From df307305f569650a1eb6ba747bc0fdc367bfb379 Mon Sep 17 00:00:00 2001 From: Oleg Mazurov Date: Tue, 11 Oct 2011 13:16:30 -0600 Subject: [PATCH] reduced poll interval to 10ms --- hidboot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hidboot.h b/hidboot.h index ba6f3d21..3350f552 100644 --- a/hidboot.h +++ b/hidboot.h @@ -463,7 +463,7 @@ uint8_t HIDBoot::Poll() if (qNextPollTime <= millis()) { - qNextPollTime = millis() + 50; + qNextPollTime = millis() + 10; const uint8_t const_buff_len = 16; uint8_t buf[const_buff_len];