Add named macros to the board joystick drivers where a shift is needed to maintain...
[pub/USBasp.git] / LUFA / CodeTemplates / makefile_template
index c10bcf9..adf5e54 100644 (file)
 MCU = ### INSERT NAME OF MICROCONTROLLER MODEL HERE ###\r
 \r
 \r
+# Target architecture (see library "Board Types" documentation).\r
+ARCH = ## INSERT NAME OF ARCHITECTURE HERE ##\r
+\r
+\r
 # Target board (see library "Board Types" documentation, NONE for projects not requiring\r
 # LUFA board drivers). If USER is selected, put custom board drivers in a directory called \r
 # "Board" inside the application directory.\r
@@ -516,7 +520,7 @@ flip: $(TARGET).hex
 \r
 dfu: $(TARGET).hex\r
        dfu-programmer $(MCU) erase\r
-       dfu-programmer $(MCU) flash --suppress-bootloader-mem --debug 1 $(TARGET).hex\r
+       dfu-programmer $(MCU) flash $(TARGET).hex\r
        dfu-programmer $(MCU) reset\r
 \r
 flip-ee: $(TARGET).hex $(TARGET).eep\r
@@ -527,7 +531,7 @@ flip-ee: $(TARGET).hex $(TARGET).eep
        $(REMOVE) $(TARGET)eep.hex\r
 \r
 dfu-ee: $(TARGET).hex $(TARGET).eep\r
-       dfu-programmer $(MCU) eeprom-flash --debug 1 --suppress-bootloader-mem $(TARGET).eep\r
+       dfu-programmer $(MCU) eeprom-flash $(TARGET).eep\r
        dfu-programmer $(MCU) reset\r
 \r
 \r