From c29d51b41985ad456a323165a3f79fd386e1a8fb Mon Sep 17 00:00:00 2001 From: OBattler Date: Tue, 9 Jan 2024 02:40:00 +0100 Subject: [PATCH] Slowed down the keyboard controller back to the old speed, fixes #4013. --- src/device/kbc_at.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/kbc_at.c b/src/device/kbc_at.c index fa7cdc304..d2e6cf364 100644 --- a/src/device/kbc_at.c +++ b/src/device/kbc_at.c @@ -699,7 +699,7 @@ kbc_at_poll(void *priv) { atkbc_t *dev = (atkbc_t *) priv; - timer_advance_u64(&dev->kbc_poll_timer, (39ULL * TIMER_USEC)); + timer_advance_u64(&dev->kbc_poll_timer, (100ULL * TIMER_USEC)); /* TODO: Implement the password security state. */ kbc_at_do_poll(dev);