mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
Add suspend support to the ChibiOS visualizer
This commit is contained in:
parent
dae7c9bfb3
commit
bcbd8f1c50
1 changed files with 7 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue