Remove matrix_init_quantum/matrix_scan_quantum (#19806)
This commit is contained in:
@@ -53,16 +53,6 @@ static matrix_row_t matrix[MATRIX_ROWS];
|
||||
//extern int8_t encoderValue;
|
||||
int8_t encoderValue = 0;
|
||||
|
||||
__attribute__ ((weak))
|
||||
void matrix_init_quantum(void) {
|
||||
matrix_init_kb();
|
||||
}
|
||||
|
||||
__attribute__ ((weak))
|
||||
void matrix_scan_quantum(void) {
|
||||
matrix_scan_kb();
|
||||
}
|
||||
|
||||
__attribute__ ((weak))
|
||||
void matrix_init_kb(void) {
|
||||
matrix_init_user();
|
||||
@@ -93,7 +83,7 @@ uint8_t matrix_cols(void) {
|
||||
|
||||
void matrix_init(void) {
|
||||
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
uart_init(1000000);
|
||||
}
|
||||
|
||||
@@ -168,7 +158,7 @@ uint8_t matrix_scan(void)
|
||||
xprintf("\r\nRequested packet, data 3 was %d",uart_data[3]);
|
||||
}
|
||||
|
||||
matrix_scan_quantum();
|
||||
matrix_scan_kb();
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user