diff options
| author | tmk <hasu@tmk-kbd.com> | 2015-05-17 19:34:34 +0900 |
|---|---|---|
| committer | tmk <hasu@tmk-kbd.com> | 2015-05-19 00:39:43 +0900 |
| commit | 6b588eb7f7893500e18686e673dbf12b511dc975 (patch) | |
| tree | 62d7a75008d3407f318ae650c7a45643944eee31 /tmk_core/common/matrix.h | |
| parent | 9a2282157fbdf57ef0a50d4fea7da72505906588 (diff) | |
| download | qmk_firmware-6b588eb7f7893500e18686e673dbf12b511dc975.tar.gz qmk_firmware-6b588eb7f7893500e18686e673dbf12b511dc975.zip | |
Add keyboard_setup() and matrix_setup()
Diffstat (limited to 'tmk_core/common/matrix.h')
| -rw-r--r-- | tmk_core/common/matrix.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tmk_core/common/matrix.h b/tmk_core/common/matrix.h index 107ee7265..ec6f8cd43 100644 --- a/tmk_core/common/matrix.h +++ b/tmk_core/common/matrix.h | |||
| @@ -43,7 +43,9 @@ extern "C" { | |||
| 43 | uint8_t matrix_rows(void); | 43 | uint8_t matrix_rows(void); |
| 44 | /* number of matrix columns */ | 44 | /* number of matrix columns */ |
| 45 | uint8_t matrix_cols(void); | 45 | uint8_t matrix_cols(void); |
| 46 | /* intialize matrix for scaning. should be called once. */ | 46 | /* should be called at early stage of startup before matrix_init.(optional) */ |
| 47 | void matrix_setup(void); | ||
| 48 | /* intialize matrix for scaning. */ | ||
| 47 | void matrix_init(void); | 49 | void matrix_init(void); |
| 48 | /* scan all key states on matrix */ | 50 | /* scan all key states on matrix */ |
| 49 | uint8_t matrix_scan(void); | 51 | uint8_t matrix_scan(void); |
