summaryrefslogtreecommitdiff
path: root/keyboards/bm40hsrgb/bm40hsrgb.c
diff options
context:
space:
mode:
authorAlbert Y <76888457+filterpaper@users.noreply.github.com>2021-03-25 20:01:03 +0800
committerGitHub <noreply@github.com>2021-03-25 23:01:03 +1100
commit29c82cfb33bda7fecc58fa9eadfe56bd10af2c56 (patch)
tree1d8191c7b699798196b9ac2c02da77fa6b6af1a4 /keyboards/bm40hsrgb/bm40hsrgb.c
parent2cd684f8e0385d97f09a2d08cd9c5f8b2e77845a (diff)
Add RGB Matrix suspend wake functions to BM40 (#12246)
* Add suspend wake functions for RGB Matrix * Add suspension RGB functions to Planck/rev6 and Preonic/rev3 * Add suspend wake to Mark 65 * Revert changes to planck and preonic * Remove changes to The Mark65 Co-authored-by: filterpaper <filterpaper@localhost>
Diffstat (limited to 'keyboards/bm40hsrgb/bm40hsrgb.c')
-rwxr-xr-xkeyboards/bm40hsrgb/bm40hsrgb.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/keyboards/bm40hsrgb/bm40hsrgb.c b/keyboards/bm40hsrgb/bm40hsrgb.c
index a44263a8b8..a0ba84db3c 100755
--- a/keyboards/bm40hsrgb/bm40hsrgb.c
+++ b/keyboards/bm40hsrgb/bm40hsrgb.c
@@ -39,4 +39,15 @@ led_config_t g_led_config = {
2, 2, 2, 2, 2, 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