forked from mirrors/qmk_userspace
Add keyboard_setup() and matrix_setup()
This commit is contained in:
parent
9a2282157f
commit
6b588eb7f7
6 changed files with 25 additions and 6 deletions
|
@ -43,7 +43,9 @@ extern "C" {
|
|||
uint8_t matrix_rows(void);
|
||||
/* number of matrix columns */
|
||||
uint8_t matrix_cols(void);
|
||||
/* intialize matrix for scaning. should be called once. */
|
||||
/* should be called at early stage of startup before matrix_init.(optional) */
|
||||
void matrix_setup(void);
|
||||
/* intialize matrix for scaning. */
|
||||
void matrix_init(void);
|
||||
/* scan all key states on matrix */
|
||||
uint8_t matrix_scan(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue