summaryrefslogtreecommitdiff
path: root/tmk_core/common/keyboard.h
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2020-11-18 16:50:32 -0800
committerGitHub <noreply@github.com>2020-11-18 16:50:32 -0800
commite7497b3fba0c2836c9bb5087eee8b15d6ffc1362 (patch)
tree272b90a7dbe9c9b2bedd8adbacd91fe3cc5df040 /tmk_core/common/keyboard.h
parent6dc2d5956f008a706a9b0d6e911522294b76f392 (diff)
Add references for is_keyboard_left() (#10850)
* Add references for is_keyboard_left() * Remove proto from bootmagic_lite.c
Diffstat (limited to 'tmk_core/common/keyboard.h')
-rw-r--r--tmk_core/common/keyboard.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common/keyboard.h b/tmk_core/common/keyboard.h
index 98ceca49b1..79d9490898 100644
--- a/tmk_core/common/keyboard.h
+++ b/tmk_core/common/keyboard.h
@@ -63,6 +63,8 @@ void keyboard_task(void);
void keyboard_set_leds(uint8_t leds);
/* it runs whenever code has to behave differently on a slave */
bool is_keyboard_master(void);
+/* it runs whenever code has to behave differently on left vs right split */
+bool is_keyboard_left(void);
void keyboard_pre_init_kb(void);
void keyboard_pre_init_user(void);