aboutsummaryrefslogtreecommitdiff
path: root/quantum/keyboard.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-10-24 20:39:41 +0100
committerGitHub <noreply@github.com>2021-10-24 20:39:41 +0100
commit2ec268bd21c6bb8d6afbd4908fb0289b0d1c6bd2 (patch)
tree48614655e9276d59038359339ebb33e8623b3a38 /quantum/keyboard.c
parentc3c562cbb698347f76977a9176d281594e8c77a3 (diff)
downloadqmk_firmware-2ec268bd21c6bb8d6afbd4908fb0289b0d1c6bd2.tar.gz
qmk_firmware-2ec268bd21c6bb8d6afbd4908fb0289b0d1c6bd2.zip
Begin to carve out platform/protocol API - Migrate keyboard_* calls (#14888)
Diffstat (limited to 'quantum/keyboard.c')
-rw-r--r--quantum/keyboard.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c
index f2a0889c1..f8e36994d 100644
--- a/quantum/keyboard.c
+++ b/quantum/keyboard.c
@@ -335,6 +335,12 @@ void keyboard_init(void) {
335#ifdef DIP_SWITCH_ENABLE 335#ifdef DIP_SWITCH_ENABLE
336 dip_switch_init(); 336 dip_switch_init();
337#endif 337#endif
338#ifdef SLEEP_LED_ENABLE
339 sleep_led_init();
340#endif
341#ifdef VIRTSER_ENABLE
342 virtser_init();
343#endif
338 344
339#if defined(DEBUG_MATRIX_SCAN_RATE) && defined(CONSOLE_ENABLE) 345#if defined(DEBUG_MATRIX_SCAN_RATE) && defined(CONSOLE_ENABLE)
340 debug_enable = true; 346 debug_enable = true;