From 88e0a543f189fe44f30ac8138648f0eb7bec533f Mon Sep 17 00:00:00 2001 From: Harvie Date: Sat, 14 Jan 2012 05:05:40 +0100 Subject: [PATCH] AVR programmer autoreset magic :-) --- avr/blink/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/avr/blink/Makefile b/avr/blink/Makefile index 9d4a517..67cc2f7 100644 --- a/avr/blink/Makefile +++ b/avr/blink/Makefile @@ -1,8 +1,10 @@ #MCU=at90s2313 MCU=attiny2313 +PORT=/dev/ttyUSB0 CC=avr-gcc OBJCOPY=avr-objcopy PROJECT=helloworld +RESET=false # optimize for size: CFLAGS=-g -mmcu=$(MCU) -Wall -Wstrict-prototypes -Os -mcall-prologues #------------------- @@ -19,7 +21,8 @@ asm : $(PROJECT).c # you need to erase first before loading the program. # load (program) the software into the eeprom: load: $(PROJECT).hex - avrdude -cstk500v1 -P/dev/ttyUSB0 -b19200 -p $(MCU) -Uflash:w:$(PROJECT).hex:i + $(RESET) && stty -F $(PORT) 19200 hupcl && sleep 2 && stty -F $(PORT) 19200 -hupcl && sleep 2 || true + avrdude -cstk500v1 -P$(PORT) -b19200 -p $(MCU) -Uflash:w:$(PROJECT).hex:i || $(MAKE) RESET=true MAKE=true load # uisp -dlpt=/dev/parport0 --erase --upload --verify if=$(PROJECT).hex -dprog=dapa -v=3 --hash=12 #------------------- clean: -- 2.30.2