From ac0ef11f0f5b16d19f2bc56c30edc1b075033187 Mon Sep 17 00:00:00 2001 From: Joakim Tufvegren Date: Tue, 11 May 2021 20:02:36 +0200 Subject: [PATCH] Remove the #10088 hotfix for K20x MCU:s. It seems to _cause_ the issue it intended to solve there. --- tmk_core/protocol/chibios/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c index 199741594a5c..1399e1ff687c 100644 --- a/tmk_core/protocol/chibios/main.c +++ b/tmk_core/protocol/chibios/main.c @@ -226,7 +226,9 @@ int main(void) { /* Remote wakeup */ if (suspend_wakeup_condition()) { usbWakeupHost(&USB_DRIVER); +# ifndef K20x restart_usb_driver(&USB_DRIVER); +# endif } } /* Woken up */