diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-07-06 23:44:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-06 23:44:22 -0400 |
commit | 21e443101f4873a813d33e50486d4e9591e89f4e (patch) | |
tree | d06043ac6fe7003ba2e9d7c3ea30378b6a51c3d5 /tmk_core/common/matrix.h | |
parent | 5baaf871bbdd6667625860b0daef7fe9a91e08db (diff) | |
parent | a4bf46f9b1d0a0be0cecb2cd0f0d941aa7c71bd3 (diff) | |
download | firmware-21e443101f4873a813d33e50486d4e9591e89f4e.tar.gz firmware-21e443101f4873a813d33e50486d4e9591e89f4e.tar.bz2 firmware-21e443101f4873a813d33e50486d4e9591e89f4e.zip |
Merge pull request #484 from jackhumbert/lets-split-support
Add Let's Split support
Diffstat (limited to 'tmk_core/common/matrix.h')
-rw-r--r-- | tmk_core/common/matrix.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tmk_core/common/matrix.h b/tmk_core/common/matrix.h index 71153a5f5..cee3593ee 100644 --- a/tmk_core/common/matrix.h +++ b/tmk_core/common/matrix.h @@ -72,6 +72,11 @@ void matrix_scan_kb(void); void matrix_init_user(void); void matrix_scan_user(void); +#ifdef I2C_SPLIT + void slave_matrix_init(void); + uint8_t slave_matrix_scan(void); +#endif + #ifdef __cplusplus } #endif |