From: Dobrica Pavlinusic Date: Sat, 15 Oct 2016 18:04:50 +0000 (+0200) Subject: make flash, make serial working X-Git-Url: http://git.rot13.org/?p=Arduino-Nano-VA-meter;a=commitdiff_plain;h=79ded4bf468066cbbd500c2b8df9128fb55815dd make flash, make serial working --- diff --git a/Makefile b/Makefile index 04c71c3..09e7878 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,13 @@ -all: +SERIAL=/dev/ttyUSB0 + +all: main.hex + +main.hex: main.c avr-gcc -mmcu=atmega328p -Wall -Os -o main.elf main.c -w avr-objcopy -j .text -j .data -O ihex main.elf main.hex -flash: - avrdude -c usbtiny -p m328p -U flash:w:"main.hex":a +flash: main.hex + avrdude -p m328p -carduino -P$(SERIAL) -b57600 -D -U flash:w:"main.hex":a + +serial: + microcom -p $(SERIAL) -s 9600