aboutsummaryrefslogtreecommitdiff
path: root/platforms/avr/flash.mk
diff options
context:
space:
mode:
Diffstat (limited to 'platforms/avr/flash.mk')
-rw-r--r--platforms/avr/flash.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/platforms/avr/flash.mk b/platforms/avr/flash.mk
index 0af1ebb1c..985cb60e5 100644
--- a/platforms/avr/flash.mk
+++ b/platforms/avr/flash.mk
@@ -147,7 +147,7 @@ define EXEC_BOOTLOADHID
147 done 147 done
148endef 148endef
149 149
150bootloadHID: $(BUILD_DIR)/$(TARGET).hex check-size cpfirmware 150bootloadhid: $(BUILD_DIR)/$(TARGET).hex check-size cpfirmware
151 $(call EXEC_BOOTLOADHID) 151 $(call EXEC_BOOTLOADHID)
152 152
153HID_BOOTLOADER_CLI ?= hid_bootloader_cli 153HID_BOOTLOADER_CLI ?= hid_bootloader_cli
@@ -168,9 +168,9 @@ else ifeq ($(strip $(BOOTLOADER)), halfkay)
168 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_TEENSY) 168 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_TEENSY)
169else ifeq (dfu,$(findstring dfu,$(BOOTLOADER))) 169else ifeq (dfu,$(findstring dfu,$(BOOTLOADER)))
170 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_DFU) 170 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_DFU)
171else ifeq ($(strip $(BOOTLOADER)), USBasp) 171else ifneq (,$(filter $(BOOTLOADER), usbasploader USBasp))
172 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_USBASP) 172 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_USBASP)
173else ifeq ($(strip $(BOOTLOADER)), bootloadHID) 173else ifneq (,$(filter $(BOOTLOADER), bootloadhid bootloadHID))
174 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_BOOTLOADHID) 174 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_BOOTLOADHID)
175else ifeq ($(strip $(BOOTLOADER)), qmk-hid) 175else ifeq ($(strip $(BOOTLOADER)), qmk-hid)
176 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_HID_LUFA) 176 $(UNSYNC_OUTPUT_CMD) && $(call EXEC_HID_LUFA)