core: Fix Oneshot mods key repeat problem #474
This commit is contained in:
parent
ba2883fd9a
commit
8cab7e60a5
1 changed files with 1 additions and 1 deletions
|
@ -431,7 +431,7 @@ static void send_keyboard(report_keyboard_t *report)
|
|||
Endpoint_SelectEndpoint(NKRO_IN_EPNUM);
|
||||
|
||||
/* Check if write ready for a polling interval around 1ms */
|
||||
while (timeout-- && !Endpoint_IsReadWriteAllowed()) _delay_us(4);
|
||||
while (timeout-- && !Endpoint_IsReadWriteAllowed()) _delay_us(8);
|
||||
if (!Endpoint_IsReadWriteAllowed()) return;
|
||||
|
||||
/* Write Keyboard Report Data */
|
||||
|
|
Reference in a new issue