mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-18 01:46:09 +00:00
[Bug] Fix RGB/LED Matrix Suspend code (#14084)
This commit is contained in:
parent
da11a49905
commit
92fa07336c
2 changed files with 6 additions and 4 deletions
|
@ -459,8 +459,9 @@ void led_matrix_init(void) {
|
||||||
|
|
||||||
void led_matrix_set_suspend_state(bool state) {
|
void led_matrix_set_suspend_state(bool state) {
|
||||||
#ifdef LED_DISABLE_WHEN_USB_SUSPENDED
|
#ifdef LED_DISABLE_WHEN_USB_SUSPENDED
|
||||||
if (state && is_keyboard_master()) {
|
if (state && !suspend_state && is_keyboard_master()) { // only run if turning off, and only once
|
||||||
led_matrix_set_value_all(0); // turn off all LEDs when suspending
|
led_task_effect(0); // turn off all LEDs when suspending
|
||||||
|
led_task_flush(0); // and actually flash led state to LEDs
|
||||||
}
|
}
|
||||||
suspend_state = state;
|
suspend_state = state;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -501,8 +501,9 @@ void rgb_matrix_init(void) {
|
||||||
|
|
||||||
void rgb_matrix_set_suspend_state(bool state) {
|
void rgb_matrix_set_suspend_state(bool state) {
|
||||||
#ifdef RGB_DISABLE_WHEN_USB_SUSPENDED
|
#ifdef RGB_DISABLE_WHEN_USB_SUSPENDED
|
||||||
if (state) {
|
if (state && !suspend_state) { // only run if turning off, and only once
|
||||||
rgb_matrix_set_color_all(0, 0, 0); // turn off all LEDs when suspending
|
rgb_task_render(0); // turn off all LEDs when suspending
|
||||||
|
rgb_task_flush(0); // and actually flash led state to LEDs
|
||||||
}
|
}
|
||||||
suspend_state = state;
|
suspend_state = state;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue