Remove matrix_init_quantum/matrix_scan_quantum (#19806)
This commit is contained in:
@@ -76,7 +76,7 @@ void matrix_init(void)
|
||||
// debug_mouse = true;
|
||||
// print("debug enabled.\n");
|
||||
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
}
|
||||
|
||||
#ifdef ADB_MOUSE_ENABLE
|
||||
@@ -241,7 +241,7 @@ uint8_t matrix_scan(void)
|
||||
extra_key = key1<<8 | 0xFF; // process in a separate call
|
||||
}
|
||||
|
||||
matrix_scan_quantum();
|
||||
matrix_scan_kb();
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@@ -50,16 +50,6 @@ static uint8_t matrix_debounce_old [MATRIX_ROWS] = {0};
|
||||
static uint8_t matrix_debounce_new [MATRIX_ROWS] = {0};
|
||||
#endif
|
||||
|
||||
__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();
|
||||
@@ -161,7 +151,7 @@ void matrix_init (void) {
|
||||
DDRD |= LED ;
|
||||
PORTD &= ~LED ;
|
||||
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
|
||||
//toggle reset, to put the keyboard logic into a known state
|
||||
Matrix_Reset() ;
|
||||
@@ -206,7 +196,7 @@ uint8_t matrix_scan(void) {
|
||||
#endif
|
||||
Matrix_Reset() ;
|
||||
|
||||
matrix_scan_quantum() ;
|
||||
matrix_scan_kb() ;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@@ -72,7 +72,7 @@ void matrix_init(void)
|
||||
for (uint8_t i=0; i < MATRIX_ROWS; i++) _matrix0[i] = 0x00;
|
||||
matrix = _matrix0;
|
||||
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ uint8_t matrix_scan(void)
|
||||
print("["); print_hex8(key); print("]\n");
|
||||
}
|
||||
|
||||
matrix_scan_quantum();
|
||||
matrix_scan_kb();
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@@ -280,7 +280,7 @@ void matrix_init(void)
|
||||
// initialize matrix state: all keys off
|
||||
for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00;
|
||||
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
return;
|
||||
|
||||
|
||||
@@ -348,7 +348,7 @@ uint8_t matrix_scan(void)
|
||||
}
|
||||
}
|
||||
|
||||
matrix_scan_quantum();
|
||||
matrix_scan_kb();
|
||||
return code;
|
||||
}
|
||||
|
||||
|
@@ -109,7 +109,7 @@ void matrix_init(void) {
|
||||
memset(matrix, 0, MATRIX_ROWS * sizeof(matrix_row_t));
|
||||
memset(matrix_debouncing, 0, MATRIX_ROWS * sizeof(matrix_row_t));
|
||||
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
|
||||
osalSysLock();
|
||||
enable_input_events();
|
||||
@@ -215,7 +215,7 @@ uint8_t matrix_scan(void) {
|
||||
porta_buffer = 65535;
|
||||
portb_buffer = 65535;
|
||||
|
||||
matrix_scan_quantum();
|
||||
matrix_scan_kb();
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@@ -97,7 +97,7 @@ void matrix_init(void)
|
||||
|
||||
/* PORTD &= ~(1<<6); */
|
||||
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -148,7 +148,7 @@ uint8_t matrix_scan(void)
|
||||
}
|
||||
}
|
||||
|
||||
matrix_scan_quantum();
|
||||
matrix_scan_kb();
|
||||
return code;
|
||||
}
|
||||
|
||||
|
@@ -93,7 +93,7 @@ extern "C" {
|
||||
kbd2.SetReportParser(0, (HIDReportParser*)&kbd_parser2);
|
||||
kbd3.SetReportParser(0, (HIDReportParser*)&kbd_parser3);
|
||||
kbd4.SetReportParser(0, (HIDReportParser*)&kbd_parser4);
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
}
|
||||
|
||||
static void or_report(report_keyboard_t report) {
|
||||
@@ -182,7 +182,7 @@ extern "C" {
|
||||
led_set(host_keyboard_leds());
|
||||
}
|
||||
}
|
||||
matrix_scan_quantum();
|
||||
matrix_scan_kb();
|
||||
return changed;
|
||||
}
|
||||
|
||||
|
@@ -59,7 +59,7 @@ void matrix_init(void) {
|
||||
matrix[i] = 0x00;
|
||||
}
|
||||
|
||||
matrix_init_quantum();
|
||||
matrix_init_kb();
|
||||
}
|
||||
|
||||
// convert E0-escaped codes into unused area
|
||||
@@ -188,7 +188,7 @@ uint8_t matrix_scan(void) {
|
||||
state = XT_STATE_INIT;
|
||||
}
|
||||
|
||||
matrix_scan_quantum();
|
||||
matrix_scan_kb();
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user