diff options
| author | Jay Greco | 2021-12-27 11:03:40 +0100 |
|---|---|---|
| committer | GitHub | 2021-12-27 11:03:40 +0100 |
| commit | ac31863021791c8bbaa98a83afe90ec6505f4897 (patch) | |
| tree | ea01199de3ac472defb20e1b5f5a8b5b8aaf483b /quantum/matrix.h | |
| parent | 4519af69a971d4fdc005c70a9d38be67a0680815 (diff) | |
Custom matrix lite support for split keyboards (#14674)
* Custom matrix lite support for split keyboards
* WIP: matrix -> matrix_common refactor
* Move matrix_post_scan() to matrix_common.c
Diffstat (limited to 'quantum/matrix.h')
| -rw-r--r-- | quantum/matrix.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/matrix.h b/quantum/matrix.h index 1a3f362fba..d968efeb0f 100644 --- a/quantum/matrix.h +++ b/quantum/matrix.h @@ -73,6 +73,7 @@ void matrix_init_user(void); void matrix_scan_user(void); #ifdef SPLIT_KEYBOARD +bool matrix_post_scan(void); void matrix_slave_scan_kb(void); void matrix_slave_scan_user(void); #endif |