summaryrefslogtreecommitdiff
path: root/keyboards/planck/rev6/rev6.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/rev6/rev6.c')
-rw-r--r--keyboards/planck/rev6/rev6.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboards/planck/rev6/rev6.c b/keyboards/planck/rev6/rev6.c
index 650e1a194d..8f4d168bf4 100644
--- a/keyboards/planck/rev6/rev6.c
+++ b/keyboards/planck/rev6/rev6.c
@@ -22,3 +22,13 @@ void matrix_init_kb(void) {
void matrix_scan_kb(void) {
matrix_scan_user();
}
+
+#ifdef DIP_SWITCH_ENABLE
+__attribute__((weak))
+void dip_update(uint8_t index, bool active) {}
+
+__attribute__((weak))
+void dip_switch_update_user(uint8_t index, bool active) {
+ dip_update(index, active);
+}
+#endif