diff options
Diffstat (limited to 'quantum/debounce/debounce_sym_g.c')
-rw-r--r-- | quantum/debounce/debounce_sym_g.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/debounce/debounce_sym_g.c b/quantum/debounce/debounce_sym_g.c index c206f2864..4a6996c73 100644 --- a/quantum/debounce/debounce_sym_g.c +++ b/quantum/debounce/debounce_sym_g.c | |||
@@ -26,10 +26,10 @@ When no state changes have occured for DEBOUNCE milliseconds, we push the state. | |||
26 | static bool debouncing = false; | 26 | static bool debouncing = false; |
27 | static uint16_t debouncing_time; | 27 | static uint16_t debouncing_time; |
28 | 28 | ||
29 | void debounce_init(void) {} | 29 | void debounce_init(uint8_t num_rows) {} |
30 | 30 | ||
31 | #if DEBOUNCE > 0 | 31 | #if DEBOUNCE > 0 |
32 | void debounce(matrix_row_t raw[], matrix_row_t cooked[], bool changed) | 32 | void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed) |
33 | { | 33 | { |
34 | if (changed) { | 34 | if (changed) { |
35 | debouncing = true; | 35 | debouncing = true; |
@@ -37,14 +37,14 @@ void debounce(matrix_row_t raw[], matrix_row_t cooked[], bool changed) | |||
37 | } | 37 | } |
38 | 38 | ||
39 | if (debouncing && timer_elapsed(debouncing_time) > DEBOUNCE) { | 39 | if (debouncing && timer_elapsed(debouncing_time) > DEBOUNCE) { |
40 | for (int i = 0; i < MATRIX_ROWS; i++) { | 40 | for (int i = 0; i < num_rows; i++) { |
41 | cooked[i] = raw[i]; | 41 | cooked[i] = raw[i]; |
42 | } | 42 | } |
43 | debouncing = false; | 43 | debouncing = false; |
44 | } | 44 | } |
45 | } | 45 | } |
46 | #else //no debouncing. | 46 | #else //no debouncing. |
47 | void debounce(matrix_row_t raw[], matrix_row_t cooked[], bool changed) | 47 | void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed) |
48 | { | 48 | { |
49 | for (int i = 0; i < MATRIX_ROWS; i++) { | 49 | for (int i = 0; i < MATRIX_ROWS; i++) { |
50 | cooked[i] = raw[i]; | 50 | cooked[i] = raw[i]; |