fix: infinity60 keyboard was not using quantum features.
the quantum matrix codes where not being initialized or/and called so no feature of the quantum firmware could be used. These codes have been added and now we can enjoy the quantum firmware goodness.
This commit is contained in:
parent
841d7e6a1d
commit
a777495683
2 changed files with 18 additions and 0 deletions
|
@ -62,6 +62,8 @@ void matrix_init(void)
|
|||
#endif
|
||||
memset(matrix, 0, MATRIX_ROWS);
|
||||
memset(matrix_debouncing, 0, MATRIX_ROWS);
|
||||
|
||||
matrix_init_quantum();
|
||||
}
|
||||
|
||||
uint8_t matrix_scan(void)
|
||||
|
@ -146,6 +148,7 @@ uint8_t matrix_scan(void)
|
|||
}
|
||||
debouncing = false;
|
||||
}
|
||||
matrix_scan_quantum();
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue