diff options
| -rw-r--r-- | tmk_core/avr.mk | 5 |
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. |
| 250 | bin: $(BUILD_DIR)/$(TARGET).hex | 250 | bin: $(BUILD_DIR)/$(TARGET).hex |
| 251 | ifeq ($(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) | ||
| 254 | else | ||
| 251 | $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin | 255 | $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin |
| 256 | endif | ||
| 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 |
