diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2017-03-28 09:08:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-28 09:08:10 -0400 |
| commit | ee6fbaaad8ccb9500698bacd529624eec219f941 (patch) | |
| tree | a23a7f02ebccf3b145a741dd927ab77f09a32b2f /quantum | |
| parent | 7a9437a2e3a2597e8eef1ea293bfb3c394f588b9 (diff) | |
| parent | 43eee52cba8db46e9f305a56ca6623428e28cc2e (diff) | |
| download | firmware-ee6fbaaad8ccb9500698bacd529624eec219f941.tar.gz firmware-ee6fbaaad8ccb9500698bacd529624eec219f941.tar.bz2 firmware-ee6fbaaad8ccb9500698bacd529624eec219f941.zip | |
Merge pull request #1177 from exiva/bluetooth_refactor
Refactor Bluetooth Handling
Diffstat (limited to 'quantum')
| -rw-r--r-- | quantum/quantum.c | 8 | ||||
| -rw-r--r-- | quantum/quantum_keycodes.h | 3 |
2 files changed, 0 insertions, 11 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 582f8920b..807a7084a 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -294,14 +294,6 @@ bool process_record_quantum(keyrecord_t *record) { return false; break; #endif - #ifdef ADAFRUIT_BLE_ENABLE - case OUT_BLE: - if (record->event.pressed) { - set_output(OUTPUT_ADAFRUIT_BLE); - } - return false; - break; - #endif #endif case MAGIC_SWAP_CONTROL_CAPSLOCK ... MAGIC_TOGGLE_NKRO: if (record->event.pressed) { diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 903d57f1e..78b02a0de 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h @@ -159,9 +159,6 @@ enum quantum_keycodes { #ifdef BLUETOOTH_ENABLE OUT_BT, #endif -#ifdef ADAFRUIT_BLE_ENABLE - OUT_BLE, -#endif // always leave at the end SAFE_RANGE |
