diff options
author | XScorpion2 <rcalt2vt@gmail.com> | 2021-03-25 06:33:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 22:33:18 +1100 |
commit | ff41c22fdccd30cdba44ba840d68261f74f45135 (patch) | |
tree | b9711e03582216c297e365c2eb5247aead397e64 /quantum/matrix.h | |
parent | 2f6236d1eab8601f097d4acb0553a4511b5c4be7 (diff) |
Adding keyboard level weak function for slave matrix scan (#12317)
Diffstat (limited to 'quantum/matrix.h')
-rw-r--r-- | quantum/matrix.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/quantum/matrix.h b/quantum/matrix.h index ce57010a47..3fe691aaee 100644 --- a/quantum/matrix.h +++ b/quantum/matrix.h @@ -74,6 +74,11 @@ void matrix_scan_kb(void); void matrix_init_user(void); void matrix_scan_user(void); +#ifdef SPLIT_KEYBOARD +void matrix_slave_scan_kb(void); +void matrix_slave_scan_user(void); +#endif + #ifdef __cplusplus } #endif |