aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-08-10 08:03:36 +0000
committerQMK Bot <hello@qmk.fm>2021-08-10 08:03:36 +0000
commit75a58c3cef4a4b95f3c5e39d6d90723be10103b7 (patch)
tree3985f3cdd5fb1a5ff7081c2d2cf6546dd2185558
parent85090b77af0343122ee62a41cf6940712f85d4f6 (diff)
parentd3932a104cb1db7e9436f5c16ee58cf3684e8b3a (diff)
downloadqmk_firmware-75a58c3cef4a4b95f3c5e39d6d90723be10103b7.tar.gz
qmk_firmware-75a58c3cef4a4b95f3c5e39d6d90723be10103b7.zip
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r--tmk_core/avr.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/tmk_core/avr.mk b/tmk_core/avr.mk
index d942e7ade..a44e15700 100644
--- a/tmk_core/avr.mk
+++ b/tmk_core/avr.mk
@@ -248,7 +248,12 @@ hid_bootloader: $(BUILD_DIR)/$(TARGET).hex check-size cpfirmware
248 248
249# Convert hex to bin. 249# Convert hex to bin.
250bin: $(BUILD_DIR)/$(TARGET).hex 250bin: $(BUILD_DIR)/$(TARGET).hex
251ifeq ($(BOOTLOADER),lufa-ms)
252 $(eval BIN_PADDING=$(shell n=`expr 32768 - $(BOOTLOADER_SIZE)` && echo $$(($$n)) || echo 0))
253 $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin --pad-to $(BIN_PADDING)
254else
251 $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin 255 $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin
256endif
252 $(COPY) $(BUILD_DIR)/$(TARGET).bin $(TARGET).bin; 257 $(COPY) $(BUILD_DIR)/$(TARGET).bin $(TARGET).bin;
253 258
254# copy bin to FLASH.bin 259# copy bin to FLASH.bin