diff options
author | Joel Challis <git@zvecr.com> | 2020-05-03 00:39:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 00:39:37 +0100 |
commit | c482a2944bf5b025fd70fa9ee53fc2e12369d327 (patch) | |
tree | c6415345ec3bf6c2fe97593f8a4cb66067edf7d0 | |
parent | e182a38e7c63179f11c94cd7d59f9bac829b85a8 (diff) |
Provide a mechanism for split keyboards to process key press on both halves (#9001)
-rw-r--r-- | tmk_core/common/keyboard.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index a767d9c877..53d08959e8 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -213,6 +213,13 @@ void keyboard_setup(void) { */ __attribute__((weak)) bool is_keyboard_master(void) { return true; } +/** \brief should_process_keypress + * + * Override this function if you have a condition where keypresses processing should change: + * - splits where the slave side needs to process for rgb/oled functionality + */ +__attribute__((weak)) bool should_process_keypress(void) { return is_keyboard_master(); } + /** \brief keyboard_init * * FIXME: needs doc @@ -292,7 +299,7 @@ void keyboard_task(void) { matrix_scan(); #endif - if (is_keyboard_master()) { + if (should_process_keypress()) { for (uint8_t r = 0; r < MATRIX_ROWS; r++) { matrix_row = matrix_get_row(r); matrix_change = matrix_row ^ matrix_prev[r]; |