diff options
| author | Drashna Jaelre <drashna@live.com> | 2020-11-18 16:50:32 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-18 16:50:32 -0800 |
| commit | e7497b3fba0c2836c9bb5087eee8b15d6ffc1362 (patch) | |
| tree | 272b90a7dbe9c9b2bedd8adbacd91fe3cc5df040 /tmk_core/common/keyboard.c | |
| parent | 6dc2d5956f008a706a9b0d6e911522294b76f392 (diff) | |
| download | qmk_firmware-e7497b3fba0c2836c9bb5087eee8b15d6ffc1362.tar.gz qmk_firmware-e7497b3fba0c2836c9bb5087eee8b15d6ffc1362.zip | |
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.c')
| -rw-r--r-- | tmk_core/common/keyboard.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index a45af56df..b0394af00 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c | |||
| @@ -222,6 +222,12 @@ void keyboard_setup(void) { | |||
| 222 | */ | 222 | */ |
| 223 | __attribute__((weak)) bool is_keyboard_master(void) { return true; } | 223 | __attribute__((weak)) bool is_keyboard_master(void) { return true; } |
| 224 | 224 | ||
| 225 | /** \brief is_keyboard_left | ||
| 226 | * | ||
| 227 | * FIXME: needs doc | ||
| 228 | */ | ||
| 229 | __attribute__((weak)) bool is_keyboard_left(void) { return true; } | ||
| 230 | |||
| 225 | /** \brief should_process_keypress | 231 | /** \brief should_process_keypress |
| 226 | * | 232 | * |
| 227 | * Override this function if you have a condition where keypresses processing should change: | 233 | * Override this function if you have a condition where keypresses processing should change: |
