diff options
author | Joel Challis <git@zvecr.com> | 2020-03-21 23:10:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-21 23:10:39 +0000 |
commit | 789e19945038c3b98d6e80bc29166d493a8b1056 (patch) | |
tree | d3d5159d9390365a2374d72cf61bd9c7ecd37ae0 /tmk_core/common.mk | |
parent | a747c1c3dee728f5124a8effb8f52819f643de5f (diff) | |
download | qmk_firmware-789e19945038c3b98d6e80bc29166d493a8b1056.tar.gz |
Add support for Bootmagic lite when using SPLIT_HAND_PIN (#8347)
* Add support for Bootmagic lite when using SPLIT_HAND_PIN
* Deduplicate bootmagic_lite logic from within via
* Revert location of defaults so that user overrides still work for now
* Tidy up code slightly
Diffstat (limited to 'tmk_core/common.mk')
-rw-r--r-- | tmk_core/common.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk index b766ebe97..3cc72a845 100644 --- a/tmk_core/common.mk +++ b/tmk_core/common.mk @@ -34,6 +34,8 @@ ifneq ($(strip $(BOOTMAGIC_ENABLE)), no) endif ifeq ($(strip $(BOOTMAGIC_ENABLE)), lite) TMK_COMMON_DEFS += -DBOOTMAGIC_LITE + TMK_COMMON_SRC += $(COMMON_DIR)/bootmagic_lite.c + TMK_COMMON_DEFS += -DMAGIC_ENABLE TMK_COMMON_SRC += $(COMMON_DIR)/magic.c else |