summaryrefslogtreecommitdiffstats
path: root/quantum/matrix.h
Commit message (Collapse)AuthorAgeFilesLines
* Change the prototype of matrix_output_unselect_delay() (#13045)Takeshi ISHII2021-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | The prototype of matrix_output_unselect_delay() has been changed as follows. ```c void matrix_output_unselect_delay(uint8_t line, bool key_pressed); ``` Currently, no keyboard seems to be redefining `matrix_output_unselect_delay()`, so there is no change in the system behavior. With this change, the keyboard level code can get some optimization hints, for example, the following. ```c void matrix_output_unselect_delay(uint8_t line, bool key_pressed) { /* If none of the keys are pressed, * there is no need to wait for time for the next line. */ if (key_pressed) { #ifdef MATRIX_IO_DELAY # if MATRIX_IO_DELAY > 0 wait_us(MATRIX_IO_DELAY); # endif #else wait_us(30); #endif } } ```
* Adding keyboard level weak function for slave matrix scan (#12317)XScorpion22021-03-251-0/+5
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2021-02-071-0/+3
|
* Migrate some tmk_core files to quantum (#11791)Joel Challis2021-02-071-0/+76
* Migrate some tmk_core files to quantum * Fix build errors