Fix LUFA blocking during startup

- Blocking occurs if built without option INTERRUPT_CONTROL_ENDPOINT
pull/12/head
tmk 11 years ago
parent 7d692c492c
commit d267ee2ada

@ -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();

Loading…
Cancel
Save