aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xkeyboards/bm40hsrgb/bm40hsrgb.c11
-rwxr-xr-xkeyboards/bm40hsrgb/config.h3
2 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/bm40hsrgb/bm40hsrgb.c b/keyboards/bm40hsrgb/bm40hsrgb.c
index a44263a8b..a0ba84db3 100755
--- a/keyboards/bm40hsrgb/bm40hsrgb.c
+++ b/keyboards/bm40hsrgb/bm40hsrgb.c
@@ -39,4 +39,15 @@ led_config_t g_led_config = {
39 2, 2, 2, 2, 2, 2 39 2, 2, 2, 2, 2, 2
40 } 40 }
41}; 41};
42
43
44void suspend_power_down_kb(void) {
45 rgb_matrix_set_suspend_state(true);
46 suspend_power_down_user();
47}
48
49void suspend_wakeup_init_kb(void) {
50 rgb_matrix_set_suspend_state(false);
51 suspend_wakeup_init_user();
52}
42#endif 53#endif
diff --git a/keyboards/bm40hsrgb/config.h b/keyboards/bm40hsrgb/config.h
index 5c1ee0621..84d0950d5 100755
--- a/keyboards/bm40hsrgb/config.h
+++ b/keyboards/bm40hsrgb/config.h
@@ -50,3 +50,6 @@
50#ifdef RGB_DI_PIN 50#ifdef RGB_DI_PIN
51 #define RGB_MATRIX_KEYPRESSES // reacts to keypresses 51 #define RGB_MATRIX_KEYPRESSES // reacts to keypresses
52#endif 52#endif
53#ifdef RGB_MATRIX_ENABLE
54# define RGB_DISABLE_WHEN_USB_SUSPENDED true // turn off effects when suspended
55#endif