From 5e2269bf2b8a8299f8ef12dcb13fc8fa2a3c83f9 Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Fri, 6 Dec 2019 21:28:16 -0700 Subject: [PATCH] a value of 100 milliseconds is adequate for the debounce constant --- src/sysinput.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysinput.c b/src/sysinput.c index b5688ac..59c503b 100644 --- a/src/sysinput.c +++ b/src/sysinput.c @@ -8,7 +8,7 @@ #include "gpio.h" #include "time_func.h" -#define DEBOUNCE_BUTTON_MSEC 350 +#define DEBOUNCE_BUTTON_MSEC 100 PMSG_QUEUE Sys_Queue = NULL;