X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/fnordlicht-mini/blobdiff_plain/185257f0a2d4a7b3c35c15b0cd6d4b3d6b0cdf56..35e64c002763f6895e3315237e4cb8aa9ce65acc:/firmware/fnordlicht-firmware/Makefile diff --git a/firmware/fnordlicht-firmware/Makefile b/firmware/fnordlicht-firmware/Makefile index 10f1022..adc475a 100644 --- a/firmware/fnordlicht-firmware/Makefile +++ b/firmware/fnordlicht-firmware/Makefile @@ -196,8 +196,8 @@ avrdude-terminal: program-%: %.hex $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(DEV) -U flash:w:$< -program-eeprom-%: %.eep.hex - $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(DEV) -U eeprom:w:$< +program-eeprom-%: %.eep.bincs + $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(DEV) -U eeprom:w:$<:r # special programming targets %.hex: %.elf @@ -216,15 +216,20 @@ program-eeprom-%: %.eep.hex %.eep.hex: %.elf $(OBJCOPY) --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 -O ihex -j .eeprom $< $@ +NODEID ?= 1 + +%.bincs: %.bin + ../tools/patcheeprom $(NODEID) < $< > $@ + %.eep.bin: %.elf $(OBJCOPY) --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 -O binary -j .eeprom $< $@ %.lss: %.elf $(OBJDUMP) -h -S $< > $@ -.PHONY: fuses-atmega8-fnordlichtmini-without-bootloader +.PHONY: fuses -fuses-atmega8-fnordlichtmini-without-bootloader: - $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(DEV) -U lfuse:w:0x3f:m -U hfuse:w:0xd9:m +fuses: + $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(DEV) -U lfuse:w:0x3f:m -U hfuse:w:0xd1:m -include $(shell $(MKDIR) .dep 2>/dev/null) $(wildcard .dep/*)