summaryrefslogtreecommitdiff
path: root/keyboards/dp60
diff options
context:
space:
mode:
authorjack <0x6A73@pm.me>2023-02-05 14:36:01 -0700
committerGitHub <noreply@github.com>2023-02-06 08:36:01 +1100
commitd5e622b979c54ddc8f9ad97116c302e29c6aed12 (patch)
tree9000e4c676ba7f7e276334e0ec750e6b75fc7d59 /keyboards/dp60
parenta5f36b156ba2a80a992936e79073039f9a871573 (diff)
Remove `DEBOUNCE` macro usage (#19750)
Diffstat (limited to 'keyboards/dp60')
-rw-r--r--keyboards/dp60/matrix.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/keyboards/dp60/matrix.c b/keyboards/dp60/matrix.c
index dbcc68056d..1803e0f94f 100644
--- a/keyboards/dp60/matrix.c
+++ b/keyboards/dp60/matrix.c
@@ -15,6 +15,10 @@
*/
#include "quantum.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
static matrix_row_t matrix[MATRIX_ROWS];