summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Dao <eric@erickhangdao.com>2022-08-20 01:17:51 -0400
committerEric Dao <eric@erickhangdao.com>2022-08-20 01:17:51 -0400
commit779caaea04c6ee858f1df5fd3dde73d05d7f3441 (patch)
tree7474b87a7531d4340063f397318846c9b2d4eb35
parent6cf36fb7552a61efe915d30f1ffda2cbcaab3fc0 (diff)
downloadwatch_winder-master.tar.gz
watch_winder-master.tar.bz2
watch_winder-master.zip
changed makefile with proper settings (SUCCESSFUL UPLOAD)HEADmaster
-rw-r--r--software/Makefile4
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