aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/DFU
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-04-13 12:10:04 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-04-13 12:10:04 +0000
commit19ecd04f37f68c0674f1194aa8d8a4fc94d6168b (patch)
treee34d898911476fc23d5f083633e7a87a45479b95 /Bootloaders/DFU
parente55f33866334615e705ff68c0f3bea8e5b1b9b8b (diff)
downloadlufa-19ecd04f37f68c0674f1194aa8d8a4fc94d6168b.tar.gz
lufa-19ecd04f37f68c0674f1194aa8d8a4fc94d6168b.tar.bz2
lufa-19ecd04f37f68c0674f1194aa8d8a4fc94d6168b.zip
Removed invalid dfu and flip related targets from the bootloaders - bootloaders can only be replaced with an external programmer.
Diffstat (limited to 'Bootloaders/DFU')
-rw-r--r--Bootloaders/DFU/makefile37
1 files changed, 2 insertions, 35 deletions
diff --git a/Bootloaders/DFU/makefile b/Bootloaders/DFU/makefile
index 2cccd1d8d..b7fac1b3c 100644
--- a/Bootloaders/DFU/makefile
+++ b/Bootloaders/DFU/makefile
@@ -32,18 +32,6 @@
# make program = Download the hex file to the device, using avrdude.
# Please customize the avrdude settings below first!
#
-# make dfu = Download the hex file to the device, using dfu-programmer (must
-# have dfu-programmer installed).
-#
-# make flip = Download the hex file to the device, using Atmel FLIP (must
-# have Atmel FLIP installed).
-#
-# make dfu-ee = Download the eeprom file to the device, using dfu-programmer
-# (must have dfu-programmer installed).
-#
-# make flip-ee = Download the eeprom file to the device, using Atmel FLIP
-# (must have Atmel FLIP installed).
-#
# make doxygen = Generate DoxyGen documentation for the project (must have
# DoxyGen installed)
#
@@ -546,27 +534,6 @@ gccversion :
program: $(TARGET).hex $(TARGET).eep
$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
-flip: $(TARGET).hex
- batchisp -hardware usb -device $(MCU) -operation erase f
- batchisp -hardware usb -device $(MCU) -operation loadbuffer $(TARGET).hex program
- batchisp -hardware usb -device $(MCU) -operation start reset 0
-
-dfu: $(TARGET).hex
- dfu-programmer $(MCU) erase
- dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
- dfu-programmer $(MCU) reset
-
-flip-ee: $(TARGET).hex $(TARGET).eep
- $(COPY) $(TARGET).eep $(TARGET)eep.hex
- batchisp -hardware usb -device $(MCU) -operation memory EEPROM erase
- batchisp -hardware usb -device $(MCU) -operation memory EEPROM loadbuffer $(TARGET)eep.hex program
- batchisp -hardware usb -device $(MCU) -operation start reset 0
- $(REMOVE) $(TARGET)eep.hex
-
-dfu-ee: $(TARGET).hex $(TARGET).eep
- dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
- dfu-programmer $(MCU) reset
-
# Generate avr-gdb config/init file which does the following:
# define the reset signal, load the target file, connect to target, and set
@@ -744,5 +711,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
.PHONY : all checkinvalidevents showliboptions \
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
-program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+program clean debug clean_list clean_binary \
+gdb-config doxygen \ No newline at end of file