core: lufa: Fix timeout of send_keyboard
Change 128*40us(5.12ms) to 128*80us(10.24ms) for 6KRO
This commit is contained in:
parent
ffb52ab0c9
commit
5b9da20efa
1 changed files with 1 additions and 1 deletions
|
|
@ -468,7 +468,7 @@ static void send_keyboard(report_keyboard_t *report)
|
|||
Endpoint_SelectEndpoint(KEYBOARD_IN_EPNUM);
|
||||
|
||||
/* Check if write ready for a polling interval around 10ms */
|
||||
while (timeout-- && !Endpoint_IsReadWriteAllowed()) _delay_us(40);
|
||||
while (timeout-- && !Endpoint_IsReadWriteAllowed()) _delay_us(80);
|
||||
if (!Endpoint_IsReadWriteAllowed()) return;
|
||||
|
||||
/* Write Keyboard Report Data */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue