diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-07-07 13:22:45 +0200 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-07-07 13:22:45 +0200 |
commit | bcbd8f1c50c6bc6169fe8afadafd6a21e182fa1f (patch) | |
tree | 41ca730126f524ff4c866aa32af8a38df171d238 | |
parent | dae7c9bfb3325412c542fbbe4342c9c8e0fc1904 (diff) | |
download | qmk_firmware-bcbd8f1c50c6bc6169fe8afadafd6a21e182fa1f.tar.gz qmk_firmware-bcbd8f1c50c6bc6169fe8afadafd6a21e182fa1f.tar.xz |
Add suspend support to the ChibiOS visualizer
-rw-r--r-- | tmk_core/protocol/chibios/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
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(); |