From 1de1336fe06905893340df78ce43e9cafdbf32c9 Mon Sep 17 00:00:00 2001 From: Alon Swartz Date: Wed, 19 Apr 2017 14:39:45 +0300 Subject: [PATCH] increased trackpoint polling interval to 20ms --- tmk_core/common/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index 518b42481e..6a9116b808 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -45,7 +45,7 @@ along with this program. If not, see . #ifdef PS2_MOUSE_ENABLE static uint32_t ps2_mouse_poll_time = 0; -static int ps2_mouse_poll_interval = 10; // milliseconds +static int ps2_mouse_poll_interval = 20; // milliseconds #endif #ifdef MATRIX_HAS_GHOST