1
0
Fork 0

Make sure Planck light calls user suspend functions (#3568)

* Make sure Planck light calls user suspend functions

* Add suspend.h include to quantum.h for kb/user function compatibility
This commit is contained in:
Drashna Jael're 2018-08-04 13:49:10 -07:00 committed by Jack Humbert
parent 435a1202e7
commit 23d68d0ba1
2 changed files with 3 additions and 0 deletions

View file

@ -159,10 +159,12 @@ void matrix_scan_kb(void)
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();
}