Skip to content

Commit

Permalink
Add Teensy ++ 2.0 bootloader support
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored and jackhumbert committed May 9, 2018
1 parent 0373c4d commit 6bd2b8d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bootloader.mk
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ ifeq ($(strip $(BOOTLOADER)), qmk-dfu)
endif
ifeq ($(strip $(BOOTLOADER)), halfkay)
OPT_DEFS += -DBOOTLOADER_HALFKAY
BOOTLOADER_SIZE = 512
ifeq ($(strip $(MCU)), atmega32u4)
BOOTLOADER_SIZE = 512
endif
ifeq ($(strip $(MCU)), at90usb1286)
BOOTLOADER_SIZE = 1024
endif
endif
ifeq ($(strip $(BOOTLOADER)), caterina)
OPT_DEFS += -DBOOTLOADER_CATERINA
Expand Down

0 comments on commit 6bd2b8d

Please sign in to comment.