summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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