1
0
Fork 0

Remove matrix_init_quantum/matrix_scan_quantum (#19806)

This commit is contained in:
Joel Challis 2023-02-11 03:47:17 +00:00 committed by GitHub
parent 9991894514
commit 11d49d00e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
76 changed files with 148 additions and 319 deletions

View file

@ -2,7 +2,7 @@
Specifically QMK works by using customized callback functions for everything. This allows for multiple levels of customization.
`matrix_scan` calls `matrix_scan_quantum`, which calls `matrix_scan_kb`, which calls `matrix_scan_user`.
`matrix_scan` calls `matrix_scan_kb`, which calls `matrix_scan_user`.
`process_record` calls a bunch of stuff, but eventually calls `process_record_kb` which calls `process_record_user`
The same goes for `matrix_init`, `layer_state_set`, `led_set`, and a few other functions.