From: David Volovskiy Date: Sat, 17 Aug 2024 06:45:22 +0000 (-0400) Subject: Set the debounce tick variables to 0 to make the face work the same as stock. X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=2cdfa2d3b3bd59f17c20540b3326dd869dc90c10;p=sensor-watch.git Set the debounce tick variables to 0 to make the face work the same as stock. --- diff --git a/movement/movement.c b/movement/movement.c index 2a45f8a..9ebf8ec 100644 --- a/movement/movement.c +++ b/movement/movement.c @@ -23,8 +23,8 @@ */ #define MOVEMENT_LONG_PRESS_TICKS 64 -#define DEBOUNCE_TICKS_DOWN 2 // In terms of *7.8125ms -#define DEBOUNCE_TICKS_UP 2 // In terms of *7.8125ms +#define DEBOUNCE_TICKS_DOWN 0 // In terms of *7.8125ms +#define DEBOUNCE_TICKS_UP 0 // In terms of *7.8125ms #include #include