diff options
Diffstat (limited to 'tmk_core/protocol/lufa/outputselect.c')
-rw-r--r-- | tmk_core/protocol/lufa/outputselect.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tmk_core/protocol/lufa/outputselect.c b/tmk_core/protocol/lufa/outputselect.c index 5d2457bff..0df5d3b75 100644 --- a/tmk_core/protocol/lufa/outputselect.c +++ b/tmk_core/protocol/lufa/outputselect.c | |||
@@ -14,7 +14,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
14 | 14 | ||
15 | #include "lufa.h" | 15 | #include "lufa.h" |
16 | #include "outputselect.h" | 16 | #include "outputselect.h" |
17 | #ifdef ADAFRUIT_BLE_ENABLE | 17 | #ifdef MODULE_ADAFRUIT_BLE |
18 | #include "adafruit_ble.h" | 18 | #include "adafruit_ble.h" |
19 | #endif | 19 | #endif |
20 | 20 | ||
@@ -34,9 +34,9 @@ uint8_t auto_detect_output(void) { | |||
34 | return OUTPUT_USB; | 34 | return OUTPUT_USB; |
35 | } | 35 | } |
36 | 36 | ||
37 | #ifdef ADAFRUIT_BLE_ENABLE | 37 | #ifdef MODULE_ADAFRUIT_BLE |
38 | if (adafruit_ble_is_connected()) { | 38 | if (adafruit_ble_is_connected()) { |
39 | return OUTPUT_ADAFRUIT_BLE; | 39 | return OUTPUT_BLUETOOTH; |
40 | } | 40 | } |
41 | #endif | 41 | #endif |
42 | 42 | ||