fix unselect_rows() in quantum/matrix.c (#6243)
unselect_col() uses setPinInputHigh(), but unselect_cols() uses setPinInput(). This is not correct. unselect_cols() should also use setPinInputHigh().
This commit is contained in:
parent
c0c8b2e50d
commit
f268993760
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ static void unselect_row(uint8_t row)
|
|||
static void unselect_rows(void)
|
||||
{
|
||||
for(uint8_t x = 0; x < MATRIX_ROWS; x++) {
|
||||
setPinInput(row_pins[x]);
|
||||
setPinInputHigh(row_pins[x]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue