1
0
Fork 0

DO NOT USE Revert back to original API to support split_keyboards.

This commit is contained in:
alex-ong 2019-01-26 17:10:27 +11:00
parent d0b691df0e
commit 123608fb31
3 changed files with 8 additions and 8 deletions

View file

@ -122,7 +122,7 @@ void matrix_init(void) {
raw_matrix[i] = 0;
matrix[i] = 0;
}
debounce_init();
debounce_init(MATRIX_ROWS);
matrix_init_quantum();
}
@ -143,7 +143,7 @@ uint8_t matrix_scan(void)
}
#endif
debounce(raw_matrix, matrix, changed);
debounce(raw_matrix, matrix, MATRIX_ROWS, changed);
matrix_scan_quantum();
return 1;