summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-05-27 00:31:23 +0200
committerGitHub <noreply@github.com>2017-05-27 00:31:23 +0200
commit9851e6f3b156e3d77a2c9af01872e8bb550ca226 (patch)
treeda3052f6df6be532f4c663d22c1055b1607219b4 /tmk_core/protocol
parent7a4ec3bd926865e490fbf7c5ec68d762e998683f (diff)
parentfa1b92fbb10ecf423d0c611ee2a39fca59376a1d (diff)
downloadqmk_firmware-9851e6f3b156e3d77a2c9af01872e8bb550ca226.tar.gz
qmk_firmware-9851e6f3b156e3d77a2c9af01872e8bb550ca226.tar.xz
Merge pull request #1328 from yiancar/qmk_usb_startup_disable
Use variable to disable usb check at startup
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r--tmk_core/protocol/lufa/lufa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
index ae6129d1a..3c4ad4b4d 100644
--- a/tmk_core/protocol/lufa/lufa.c
+++ b/tmk_core/protocol/lufa/lufa.c
@@ -1180,7 +1180,7 @@ int main(void)
print("Keyboard start.\n");
while (1) {
- #if !defined(BLUETOOTH_ENABLE)
+ #if !defined(NO_USB_STARTUP_CHECK)
while (USB_DeviceState == DEVICE_STATE_Suspended) {
print("[s]");
suspend_power_down();