| 173 | } |
| 174 | |
| 175 | void Tca8418::add_released_key(uint8_t row, uint8_t col) { |
| 176 | if (released_key_count >= KEY_EVENT_LIST_SIZE) |
| 177 | return; |
| 178 | |
| 179 | released_key_count++; |
| 180 | released_list[0].row = row; |
| 181 | released_list[0].col = col; |
| 182 | } |
| 183 | |
| 184 | void Tca8418::remove_pressed_key(uint8_t row, uint8_t col) { |
| 185 | if (pressed_key_count == 0) |
nothing calls this directly
no outgoing calls
no test coverage detected