forked from forks/qmk_firmware
b79c324642
* add QMK DFU make option, bootloader replacement instructions in wanleg readme: update flashing instructions, add bootloader replacement instructions (replace default Caterina with QMK DFU). add make option for QMK DFU * suggested revisions made * formatting changes
7 lines
302 B
Makefile
7 lines
302 B
Makefile
TAP_DANCE_ENABLE = yes # Enable Tap Dance (comment if not being implemented)
|
|
|
|
#If ProMicro has QMK DFU bootloader instead of Caterina,
|
|
#run "make <keyboard>:<keymap> dfu=qmk" when compiling to ensure it is flagged properly after being flashed
|
|
ifeq ($(strip $(dfu)), qmk)
|
|
BOOTLOADER = qmk-dfu
|
|
endif |