forked from mfulz_github/qmk_firmware
Added the --suppress-bootloader-mem option to the makefile dfu target, to ensure that writes to the bootloader section of the AVR's flash memory are ignored (thanks to Axel Rohde).
Fixed incorrect command name for EEPROM memory programming in the makefile dfu-ee target. Makefile whitespace fixes.
This commit is contained in:
parent
b48095c0fb
commit
bd85422d2b
@ -54,7 +54,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
|
@ -54,7 +54,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -523,7 +523,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -534,7 +534,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -525,7 +525,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -536,7 +536,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -524,7 +524,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -535,7 +535,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -524,7 +524,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -535,7 +535,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -540,7 +540,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -551,7 +551,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -527,7 +527,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -538,7 +538,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -522,7 +522,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -533,7 +533,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -524,7 +524,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -535,7 +535,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -523,7 +523,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -534,7 +534,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -541,7 +541,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -552,7 +552,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -524,7 +524,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -535,7 +535,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -520,7 +520,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -531,7 +531,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -519,7 +519,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -530,7 +530,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -529,7 +529,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -540,7 +540,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -520,7 +520,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -531,7 +531,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -520,7 +520,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -531,7 +531,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -520,7 +520,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -531,7 +531,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -522,7 +522,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -533,7 +533,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -520,7 +520,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -531,7 +531,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -520,7 +520,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -531,7 +531,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = ### INSERT NAME OF MICROCONTROLLER MODEL HERE ###
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = ### INSERT NAME OF BOARD HERE, OR NONE IF NO BOARD DRIVERS USED ###
|
BOARD = ### INSERT NAME OF BOARD HERE, OR NONE IF NO BOARD DRIVERS USED ###
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -516,7 +516,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -527,7 +527,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,6 +42,8 @@
|
|||||||
* to free up the Start of Frame flag for interrupt use in the user application
|
* to free up the Start of Frame flag for interrupt use in the user application
|
||||||
* - All project makefiles now correctly clean intermediate build files from assembly and C++ sources (thanks to Daniel Czigany)
|
* - All project makefiles now correctly clean intermediate build files from assembly and C++ sources (thanks to Daniel Czigany)
|
||||||
* - Removed the EVENT_USB_InitFailure() event, not specifying a USB mode now defaults to UID selection mode
|
* - Removed the EVENT_USB_InitFailure() event, not specifying a USB mode now defaults to UID selection mode
|
||||||
|
* - Added the --suppress-bootloader-mem option to the makefile dfu target, to ensure that writes to the bootloader section of the AVR's
|
||||||
|
* flash memory are ignored (thanks to Axel Rohde)
|
||||||
*
|
*
|
||||||
* <b>Fixed:</b>
|
* <b>Fixed:</b>
|
||||||
* - Fixed USB_GetHIDReportItemInfo() function modifying the given report item's data when the report item does not exist
|
* - Fixed USB_GetHIDReportItemInfo() function modifying the given report item's data when the report item does not exist
|
||||||
@ -59,6 +61,7 @@
|
|||||||
* - Fixed USB_Host_ClearPipeStall() incorrectly determining the endpoint direction from the currently selected pipe
|
* - Fixed USB_Host_ClearPipeStall() incorrectly determining the endpoint direction from the currently selected pipe
|
||||||
* - Fixed JTAG_DEBUG_POINT() and JTAG_DEBUG_BREAK() macros not compiling under pure C99 standards mode
|
* - Fixed JTAG_DEBUG_POINT() and JTAG_DEBUG_BREAK() macros not compiling under pure C99 standards mode
|
||||||
* - Fixed endpoint selection within the CALLBACK_HID_Device_CreateHIDReport() callback function causing broken GET REPORT requests
|
* - Fixed endpoint selection within the CALLBACK_HID_Device_CreateHIDReport() callback function causing broken GET REPORT requests
|
||||||
|
* - Fixed incorrect command name for EEPROM memory programming in the makefile dfu-ee target
|
||||||
*
|
*
|
||||||
* \section Sec_ChangeLog100807 Version 100807
|
* \section Sec_ChangeLog100807 Version 100807
|
||||||
* <b>New:</b>
|
* <b>New:</b>
|
||||||
|
@ -18,9 +18,9 @@
|
|||||||
* with the LUFA hardware API. To do this, the BOARD macro should be defined to the value BOARD_USER. This indicates
|
* with the LUFA hardware API. To do this, the BOARD macro should be defined to the value BOARD_USER. This indicates
|
||||||
* that the board level drivers should be located in a folder named "Board" located inside the application's folder.
|
* that the board level drivers should be located in a folder named "Board" located inside the application's folder.
|
||||||
*
|
*
|
||||||
* When used, the driver stub files located in the DriverStubs folder should be copied to the user Board directory,
|
* When used, the driver stub files located in the LUFA/CodeTemplates/DriverStubs folder should be copied to the user
|
||||||
* and fleshed out to include the values and code needed to control the custom board hardware. Once done, the existing
|
* Board/ directory, and fleshed out to include the values and code needed to control the custom board hardware. Once
|
||||||
* LUFA board level APIs (accessed in the regular LUFA/Drivers/Board/ folder) will redirect to the user board drivers,
|
* done, the existing LUFA board level APIs (accessed in the regular LUFA/Drivers/Board/ folder) will redirect to the
|
||||||
* maintaining code compatibility and allowing for a different board to be selected through the project makefile with
|
* user board drivers, maintaining code compatibility and allowing for a different board to be selected through the
|
||||||
* no code changes.
|
* project makefile with no code changes.
|
||||||
*/
|
*/
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -544,7 +544,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -555,7 +555,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = atmega32u2
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = BENITO
|
BOARD = BENITO
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -530,7 +530,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -541,7 +541,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -530,7 +530,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -541,7 +541,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = BUI
|
BOARD = BUI
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = NONE
|
BOARD = NONE
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -533,7 +533,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -544,7 +544,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -518,7 +518,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -529,7 +529,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -521,7 +521,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -532,7 +532,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -532,7 +532,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -543,7 +543,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -522,7 +522,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -533,7 +533,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = USBKEY
|
BOARD = USBKEY
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -556,7 +556,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -567,7 +567,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ MCU = at90usb1287
|
|||||||
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
# Target board (see library "Board Types" documentation, NONE for projects not requiring
|
||||||
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
# LUFA board drivers). If USER is selected, put custom board drivers in a directory called
|
||||||
# "Board" inside the application directory.
|
# "Board" inside the application directory.
|
||||||
BOARD = XPLAIN
|
BOARD = XPLAIN
|
||||||
|
|
||||||
|
|
||||||
# Processor frequency.
|
# Processor frequency.
|
||||||
@ -547,7 +547,7 @@ flip: $(TARGET).hex
|
|||||||
|
|
||||||
dfu: $(TARGET).hex
|
dfu: $(TARGET).hex
|
||||||
dfu-programmer $(MCU) erase
|
dfu-programmer $(MCU) erase
|
||||||
dfu-programmer $(MCU) flash --debug 1 $(TARGET).hex
|
dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
flip-ee: $(TARGET).hex $(TARGET).eep
|
flip-ee: $(TARGET).hex $(TARGET).eep
|
||||||
@ -558,7 +558,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
|
|||||||
$(REMOVE) $(TARGET)eep.hex
|
$(REMOVE) $(TARGET)eep.hex
|
||||||
|
|
||||||
dfu-ee: $(TARGET).hex $(TARGET).eep
|
dfu-ee: $(TARGET).hex $(TARGET).eep
|
||||||
dfu-programmer $(MCU) flash-eeprom --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep
|
||||||
dfu-programmer $(MCU) reset
|
dfu-programmer $(MCU) reset
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user