diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-07-05 13:12:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-05 13:12:01 -0400 |
commit | 7d28d6a7bc81578bb5a83f1d55810ee3d1458e96 (patch) | |
tree | f620b65208ea7c0395f4007b3f80c537b93f054a /tmk_core/chibios.mk | |
parent | 421ff74e0c08df7424144674cd88da3b34b30fc9 (diff) | |
parent | f9a6e34c28f6de0f6ec505144acc287b90326436 (diff) |
Merge pull request #480 from fredizzimo/add_infinity_ergodox
Add infinity ergodox
Diffstat (limited to 'tmk_core/chibios.mk')
-rw-r--r-- | tmk_core/chibios.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tmk_core/chibios.mk b/tmk_core/chibios.mk index 0abb933a8d..cb67ac6f25 100644 --- a/tmk_core/chibios.mk +++ b/tmk_core/chibios.mk @@ -113,6 +113,7 @@ AR = arm-none-eabi-ar NM = arm-none-eabi-nm HEX = $(OBJCOPY) -O $(FORMAT) EEP = +BIN = $(OBJCOPY) -O binary THUMBFLAGS = -DTHUMB_PRESENT -mno-thumb-interwork -DTHUMB_NO_INTERWORKING -mthumb -DTHUMB @@ -151,4 +152,7 @@ else ifneq ("$(wildcard $(KEYBOARD_PATH)/boards/$(BOARD)/bootloader_defs.h)","") endif # List any extra directories to look for libraries here. -EXTRALIBDIRS = $(RULESPATH)/ld
\ No newline at end of file +EXTRALIBDIRS = $(RULESPATH)/ld + +dfu-util: $(BUILD_DIR)/$(TARGET).bin sizeafter + dfu-util -D $(BUILD_DIR)/$(TARGET).bin
\ No newline at end of file |