diff options
author | Eric Dao <eric@erickhangdao.com> | 2022-08-20 01:17:51 -0400 |
---|---|---|
committer | Eric Dao <eric@erickhangdao.com> | 2022-08-20 01:17:51 -0400 |
commit | 779caaea04c6ee858f1df5fd3dde73d05d7f3441 (patch) | |
tree | 7474b87a7531d4340063f397318846c9b2d4eb35 /software | |
parent | 6cf36fb7552a61efe915d30f1ffda2cbcaab3fc0 (diff) | |
download | watch_winder-master.tar.gz watch_winder-master.tar.bz2 watch_winder-master.zip |
Diffstat (limited to 'software')
-rw-r--r-- | software/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/software/Makefile b/software/Makefile index 0ab0ed4..6aaa622 100644 --- a/software/Makefile +++ b/software/Makefile @@ -5,9 +5,9 @@ all: $(patsubst %.asm,%.hex,$(wildcard *.asm)) upload: ${program}.hex - avrdude -c arduino -p m328p -P /dev/ttyS6 -b 115200 -U flash:w:$< + avrdude -c arduino -p m328p -P COM4 -U flash:w:$< monitor: - picocom --send-cmd "ascii_xfr -s -v -l10" --nolock /dev/ttyS6 + picocom --send-cmd "ascii_xfr -s -v -l10" --nolock COM4 .PHONY: all upload monitor |