summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol
diff options
context:
space:
mode:
authorTravis La Marr <exiva@exiva.net>2017-03-24 22:14:57 +0100
committerTravis La Marr <exiva@exiva.net>2017-03-24 22:14:57 +0100
commit43eee52cba8db46e9f305a56ca6623428e28cc2e (patch)
treea23a7f02ebccf3b145a741dd927ab77f09a32b2f /tmk_core/protocol
parentb4ac0598fa5a69418d79f78c0cf323307d5f5f5e (diff)
downloadqmk_firmware-43eee52cba8db46e9f305a56ca6623428e28cc2e.tar.gz
qmk_firmware-43eee52cba8db46e9f305a56ca6623428e28cc2e.tar.xz
Add BLE and EZKey module defines.
Also restored serial init back to original location. Was getting junk data.
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r--tmk_core/protocol/lufa/lufa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
index 3d7a8cc43..4cb23ebc8 100644
--- a/tmk_core/protocol/lufa/lufa.c
+++ b/tmk_core/protocol/lufa/lufa.c
@@ -1125,6 +1125,10 @@ int main(void)
// midi_send_noteoff(&midi_device, 0, 64, 127);
#endif
+#ifdef MODULE_ADAFRUIT_EZKEY
+ serial_init();
+#endif
+
/* wait for USB startup & debug output */
#ifdef WAIT_FOR_USB
@@ -1173,10 +1177,6 @@ int main(void)
rgblight_task();
#endif
-#ifdef MODULE_ADAFRUIT_EZKEY
- serial_init();
-#endif
-
#ifdef MODULE_ADAFRUIT_BLE
adafruit_ble_task();
#endif