keycode_map simplification cont

This commit is contained in:
Garretonzo 2024-11-14 22:27:41 -08:00
parent 1378e56606
commit 9f71517f8d

View File

@ -295,16 +295,16 @@ static uint16_t keycode_map[MATRIX_ROWS][MATRIX_COLS] = {{KC_NO}};
*
* Updates map of keycodes when a key is pressed down
*/
void update_keycode_map_impl(uint16_t entry_number, uint16_t keycode) {
keycode_map[entry_number / 16][entry_number % 16] = keycode;
void update_keycode_map_impl(uint8_t row, uint8_t col, uint16_t keycode) {
keycode_map[row][col] = keycode;
}
/** \brief read keycode map
*
* reads from map of keycodes when a key is released
*/
uint16_t read_keycode_map_impl(uint16_t entry_number) {
return keycode_map[entry_number / 16][entry_number % 16];
uint16_t read_keycode_map_impl(uint8_t row, uint8_t col) {
return keycode_map[row][col];
}
/** \brief update keycode map
@ -313,8 +313,7 @@ uint16_t read_keycode_map_impl(uint16_t entry_number) {
*/
void update_keycode_map(keypos_t key, uint16_t keycode) {
if (key.row < MATRIX_ROWS && key.col < MATRIX_COLS) {
const uint16_t entry_number = (uint16_t)(key.row * MATRIX_COLS) + key.col;
update_keycode_map_impl(entry_number, keycode);
update_keycode_map_impl(key.row, key.col, keycode);
}
}
@ -324,8 +323,7 @@ void update_keycode_map(keypos_t key, uint16_t keycode) {
*/
uint16_t read_keycode_map(keypos_t key) {
if (key.row < MATRIX_ROWS && key.col < MATRIX_COLS) {
const uint16_t entry_number = (uint16_t)(key.row * MATRIX_COLS) + key.col;
return read_keycode_map_impl(entry_number);
return read_keycode_map_impl(key.row, key.col);
}
return KC_NO;
}