Add RGB matrix suspend wake function for Planck/rev6 (#12290)
* Add RGB matrix suspend wake function for Planck/rev6 * Update suggested definition to allow user override. Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: filterpaper <filterpaper@localhost> Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
parent
b88498ba85
commit
c7ca67a036
2 changed files with 14 additions and 0 deletions
|
@ -140,4 +140,8 @@
|
||||||
#define WS2812_DMA_STREAM STM32_DMA1_STREAM2
|
#define WS2812_DMA_STREAM STM32_DMA1_STREAM2
|
||||||
#define WS2812_DMA_CHANNEL 2
|
#define WS2812_DMA_CHANNEL 2
|
||||||
|
|
||||||
|
#ifndef RGB_DISABLE_WHEN_USB_SUSPENDED
|
||||||
|
# define RGB_DISABLE_WHEN_USB_SUSPENDED true
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -39,6 +39,16 @@ led_config_t g_led_config = { {
|
||||||
// 6 5 4 3
|
// 6 5 4 3
|
||||||
// 0
|
// 0
|
||||||
// 7 8 1 2
|
// 7 8 1 2
|
||||||
|
|
||||||
|
void suspend_power_down_kb(void) {
|
||||||
|
rgb_matrix_set_suspend_state(true);
|
||||||
|
suspend_power_down_user();
|
||||||
|
}
|
||||||
|
|
||||||
|
void suspend_wakeup_init_kb(void) {
|
||||||
|
rgb_matrix_set_suspend_state(false);
|
||||||
|
suspend_wakeup_init_user();
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void matrix_init_kb(void) {
|
void matrix_init_kb(void) {
|
||||||
|
|
Loading…
Reference in a new issue