From: Fred Sundvik Date: Thu, 7 Jul 2016 11:22:45 +0000 (+0300) Subject: Add suspend support to the ChibiOS visualizer X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bcbd8f1c50c6bc6169fe8afadafd6a21e182fa1f;p=qmk_firmware.git Add suspend support to the ChibiOS visualizer --- diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c index 36fd45d45..b0eb9aef8 100644 --- a/tmk_core/protocol/chibios/main.c +++ b/tmk_core/protocol/chibios/main.c @@ -155,6 +155,9 @@ int main(void) { if(USB_DRIVER.state == USB_SUSPENDED) { print("[s]"); +#ifdef VISUALIZER_ENABLE + visualizer_suspend(); +#endif while(USB_DRIVER.state == USB_SUSPENDED) { /* Do this in the suspended state */ #ifdef SERIAL_LINK_ENABLE @@ -172,6 +175,10 @@ int main(void) { #ifdef MOUSEKEY_ENABLE mousekey_send(); #endif /* MOUSEKEY_ENABLE */ + +#ifdef VISUALIZER_ENABLE + visualizer_resume(); +#endif } keyboard_task();