1
0
Fork 0

updates ez's matrix to spec

This commit is contained in:
Jack Humbert 2016-06-23 23:14:21 -04:00
parent 13bb6b4b7f
commit b68b722325
3 changed files with 18 additions and 15 deletions

View file

@ -61,12 +61,20 @@ uint32_t matrix_scan_count;
#endif
__attribute__ ((weak))
void matrix_init_user(void) {}
__attribute__ ((weak))
void matrix_scan_user(void) {}
__attribute__ ((weak))
void matrix_init_kb(void) {
matrix_init_user();
}
__attribute__ ((weak))
void matrix_scan_kb(void) {
matrix_scan_user();
}
inline