Jelajahi Sumber

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
Drashna Jaelre 6 tahun lalu
induk
melakukan
23d68d0ba1
2 mengubah file dengan 3 tambahan dan 0 penghapusan
  1. 2 0
      keyboards/planck/light/light.c
  2. 1 0
      quantum/quantum.h

+ 2 - 0
keyboards/planck/light/light.c

@@ -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();
 }
 

+ 1 - 0
quantum/quantum.h

@@ -53,6 +53,7 @@
 #include <stdlib.h>
 #include "print.h"
 #include "send_string_keycodes.h"
+#include "suspend.h"
 
 extern uint32_t default_layer_state;