diff options
Diffstat (limited to 'keyboards/duck/orion')
-rw-r--r-- | keyboards/duck/orion/v3/matrix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/keyboards/duck/orion/v3/matrix.c b/keyboards/duck/orion/v3/matrix.c index 84673bd44f..a5b522d78b 100644 --- a/keyboards/duck/orion/v3/matrix.c +++ b/keyboards/duck/orion/v3/matrix.c @@ -16,6 +16,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "quantum.h" +#ifndef DEBOUNCE +# define DEBOUNCE 5 +#endif + static uint8_t debouncing = DEBOUNCE; /* matrix state(1:on, 0:off) */ |