mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
reduced poll interval to 10ms
This commit is contained in:
parent
d8596b0077
commit
df307305f5
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ uint8_t HIDBoot<BOOT_PROTOCOL>::Poll()
|
||||||
|
|
||||||
if (qNextPollTime <= millis())
|
if (qNextPollTime <= millis())
|
||||||
{
|
{
|
||||||
qNextPollTime = millis() + 50;
|
qNextPollTime = millis() + 10;
|
||||||
|
|
||||||
const uint8_t const_buff_len = 16;
|
const uint8_t const_buff_len = 16;
|
||||||
uint8_t buf[const_buff_len];
|
uint8_t buf[const_buff_len];
|
||||||
|
|
Loading…
Reference in a new issue