From b7ec38e61a4f92ade80e38744d00311538671179 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Sat, 11 Oct 2008 19:27:10 +0000 Subject: * Updating version number to 0013. * Updating ATmega168 bootloader to work with standard distributions of avrdude (responding to signature requests made with the universal SPI command) and correctly store EEPROM data. Thanks to ladyada. * Changing compilation process to generate .eep file and allow for use of EEMEM directive (although not yet uploading EEPROM data). --- bootloaders/atmega168/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bootloaders/atmega168/Makefile') diff --git a/bootloaders/atmega168/Makefile b/bootloaders/atmega168/Makefile index c55cfc9..182ccae 100755 --- a/bootloaders/atmega168/Makefile +++ b/bootloaders/atmega168/Makefile @@ -105,11 +105,15 @@ diecimila: TARGET = diecimila diecimila: CFLAGS += '-DMAX_TIME_COUNT=F_CPU>>4' '-DNUM_LED_FLASHES=1' diecimila: $(PROGRAM)_diecimila.hex diecimila: AVR_FREQ = 16000000L +diecimila: HFUSE = DD +diecimila: LFUSE = FF ng: TARGET = ng ng: CFLAGS += '-DMAX_TIME_COUNT=F_CPU>>1' '-DNUM_LED_FLASHES=3' ng: $(PROGRAM)_ng.hex ng: AVR_FREQ = 16000000L +ng: HFUSE = DD +ng: LFUSE = FF isp: $(PROGRAM)_$(TARGET).hex $(ISPFUSES) -- cgit v1.2.3-18-g5258