summaryrefslogtreecommitdiff
path: root/tmk_core/common.mk
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-12-02 13:14:04 -0500
committerGitHub <noreply@github.com>2016-12-02 13:14:04 -0500
commit78f8fe361f9f6d5c32c785e90da3c868a0b255aa (patch)
tree28fe3de019ffd4c4c116c0cc9444cd391a59c85c /tmk_core/common.mk
parent8f0a8cb7a6c001dd07bdf0c701e40a80b16f5c15 (diff)
parent712476cd288505cabb2ad6163d1c1ba13a7a1cca (diff)
Merge pull request #915 from wez/ble_3
Add support for Adafruit BLE modules
Diffstat (limited to 'tmk_core/common.mk')
-rw-r--r--tmk_core/common.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk
index f826a7b540..c32a12bb6f 100644
--- a/tmk_core/common.mk
+++ b/tmk_core/common.mk
@@ -81,6 +81,10 @@ ifeq ($(strip $(BACKLIGHT_ENABLE)), yes)
TMK_COMMON_DEFS += -DBACKLIGHT_ENABLE
endif
+ifeq ($(strip $(ADAFRUIT_BLE_ENABLE)), yes)
+ TMK_COMMON_DEFS += -DADAFRUIT_BLE_ENABLE
+endif
+
ifeq ($(strip $(BLUETOOTH_ENABLE)), yes)
TMK_COMMON_DEFS += -DBLUETOOTH_ENABLE
endif
@@ -110,4 +114,4 @@ endif
VPATH += $(TMK_PATH)/$(COMMON_DIR)
ifeq ($(PLATFORM),CHIBIOS)
VPATH += $(TMK_PATH)/$(COMMON_DIR)/chibios
-endif \ No newline at end of file
+endif