diff options
author | tmk <nobody@nowhere> | 2013-09-25 12:23:14 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-09-25 12:23:14 +0900 |
commit | d267ee2adabdae333d77d4434ba8256c2270bc19 (patch) | |
tree | 0ea59461773c2a8c6e0d5519c5339d28c972a7bb /protocol | |
parent | 7d692c492ca999edd827477b914ae38ce43bf519 (diff) |
Fix LUFA blocking during startup
- Blocking occurs if built without option INTERRUPT_CONTROL_ENDPOINT
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/lufa/lufa.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocol/lufa/lufa.c b/protocol/lufa/lufa.c index a4e57b227d..a230d5ba20 100644 --- a/protocol/lufa/lufa.c +++ b/protocol/lufa/lufa.c @@ -539,7 +539,9 @@ int main(void) { SetupHardware(); sei(); +#if defined(INTERRUPT_CONTROL_ENDPOINT) while (USB_DeviceState != DEVICE_STATE_Configured) ; +#endif print("USB configured.\n"); keyboard_init(); |