summaryrefslogtreecommitdiff
path: root/keyboards/opendeck/32/rev1/rev1.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2024-01-10 09:55:09 +0000
committerGitHub <noreply@github.com>2024-01-10 09:55:09 +0000
commit41948350e866b8881a82a384342686942fc92865 (patch)
treeed7377a2b269ec6c846a01249601e43ce679533c /keyboards/opendeck/32/rev1/rev1.c
parent833abef115c8715a2bb56a871a557cc6e80ff48c (diff)
Migrate RGB Matrix config to info.json - NOPQ (#22866)
Diffstat (limited to 'keyboards/opendeck/32/rev1/rev1.c')
-rw-r--r--keyboards/opendeck/32/rev1/rev1.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/keyboards/opendeck/32/rev1/rev1.c b/keyboards/opendeck/32/rev1/rev1.c
index da9e6569f2..2bf04f8479 100644
--- a/keyboards/opendeck/32/rev1/rev1.c
+++ b/keyboards/opendeck/32/rev1/rev1.c
@@ -100,11 +100,15 @@ void keyboard_pre_init_kb(void) {
// We don't use this feature of the IS31FL3731 but it is electrically connected
// Make sure not to drive it
setPinInput(RGB_IRQ_N_PIN);
+
+ keyboard_pre_init_user();
}
-void keyboard_post_init_user(void) {
+void keyboard_post_init_kb(void) {
// RGB enabled by default, no way to turn off. No need to expend EEPROM write cycles here.
rgb_matrix_enable_noeeprom();
+
+ keyboard_post_init_user();
}
#endif