diff options
author | Tomasz Janeczko <janecztom@gmail.com> | 2022-06-08 22:51:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-08 14:51:41 -0700 |
commit | 6567b2168881ce8c47e38debcdc89eba1ac80c5a (patch) | |
tree | 12326ddd1ce2ee0da1cd8ae1063b35223e05f479 /keyboards/redox_w | |
parent | f6a7bf2a833b588476cd04c13c6b7a65c6305024 (diff) | |
download | qmk_firmware-6567b2168881ce8c47e38debcdc89eba1ac80c5a.tar.gz qmk_firmware-6567b2168881ce8c47e38debcdc89eba1ac80c5a.zip |
Move more UART-based keyboards to use timeout correctly. (#17329)
Co-authored-by: Tomasz Janeczko <tomasz.j@hey.com>
Diffstat (limited to 'keyboards/redox_w')
-rw-r--r-- | keyboards/redox_w/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/redox_w/matrix.c b/keyboards/redox_w/matrix.c index 6a33e89976..9c50c9cece 100644 --- a/keyboards/redox_w/matrix.c +++ b/keyboards/redox_w/matrix.c @@ -34,7 +34,7 @@ bool matrix_scan_custom(matrix_row_t current_matrix[]) { //trust the external keystates entirely, erase the last data uint8_t uart_data[11] = {0}; - //there are 14 bytes corresponding to 14 columns, and an end byte + //there are 10 bytes corresponding to 10 columns, and then an end byte for (uint8_t i = 0; i < 11; i++) { //wait for the serial data, timeout if it's been too long //this only happened in testing with a loose wire, but does no |