diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-12-02 13:14:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-02 13:14:04 -0500 |
commit | 78f8fe361f9f6d5c32c785e90da3c868a0b255aa (patch) | |
tree | 28fe3de019ffd4c4c116c0cc9444cd391a59c85c /tmk_core/protocol/lufa.mk | |
parent | 8f0a8cb7a6c001dd07bdf0c701e40a80b16f5c15 (diff) | |
parent | 712476cd288505cabb2ad6163d1c1ba13a7a1cca (diff) |
Merge pull request #915 from wez/ble_3
Add support for Adafruit BLE modules
Diffstat (limited to 'tmk_core/protocol/lufa.mk')
-rw-r--r-- | tmk_core/protocol/lufa.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/protocol/lufa.mk b/tmk_core/protocol/lufa.mk index 5b1e3d19d0..151d26cbc8 100644 --- a/tmk_core/protocol/lufa.mk +++ b/tmk_core/protocol/lufa.mk @@ -21,6 +21,10 @@ ifeq ($(strip $(MIDI_ENABLE)), yes) include $(TMK_PATH)/protocol/midi.mk endif +ifeq ($(strip $(ADAFRUIT_BLE_ENABLE)), yes) + LUFA_SRC += $(LUFA_DIR)/adafruit_ble.cpp +endif + ifeq ($(strip $(BLUETOOTH_ENABLE)), yes) LUFA_SRC += $(LUFA_DIR)/bluetooth.c \ $(TMK_DIR)/protocol/serial_uart.c |