diff options
Diffstat (limited to 'keyboards/al1/matrix.c')
| -rw-r--r-- | keyboards/al1/matrix.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/al1/matrix.c b/keyboards/al1/matrix.c index 0b7ec2c8a..f6e951087 100644 --- a/keyboards/al1/matrix.c +++ b/keyboards/al1/matrix.c | |||
| @@ -7,10 +7,10 @@ | |||
| 7 | #include "util.h" | 7 | #include "util.h" |
| 8 | #include "matrix.h" | 8 | #include "matrix.h" |
| 9 | 9 | ||
| 10 | #ifndef DEBOUNCING_DELAY | 10 | #ifndef DEBOUNCE |
| 11 | # define DEBOUNCING_DELAY 5 | 11 | # define DEBOUNCE 5 |
| 12 | #endif | 12 | #endif |
| 13 | static uint8_t debouncing = DEBOUNCING_DELAY; | 13 | static uint8_t debouncing = DEBOUNCE; |
| 14 | 14 | ||
| 15 | static matrix_row_t matrix[MATRIX_ROWS]; | 15 | static matrix_row_t matrix[MATRIX_ROWS]; |
| 16 | static matrix_row_t matrix_debouncing[MATRIX_ROWS]; | 16 | static matrix_row_t matrix_debouncing[MATRIX_ROWS]; |
| @@ -69,7 +69,7 @@ uint8_t matrix_scan(void) { | |||
| 69 | bool curr_bit = rows & (1<<row); | 69 | bool curr_bit = rows & (1<<row); |
| 70 | if (prev_bit != curr_bit) { | 70 | if (prev_bit != curr_bit) { |
| 71 | matrix_debouncing[row] ^= ((matrix_row_t)1<<col); | 71 | matrix_debouncing[row] ^= ((matrix_row_t)1<<col); |
| 72 | debouncing = DEBOUNCING_DELAY; | 72 | debouncing = DEBOUNCE; |
| 73 | } | 73 | } |
| 74 | } | 74 | } |
| 75 | unselect_cols(); | 75 | unselect_cols(); |
