]> git.earman.xyz Git - sensor-watch.git/commitdiff
Set the debounce tick variables to 0 to make the face work the same as stock.
authorDavid Volovskiy <devolov@gmail.com>
Sat, 17 Aug 2024 06:45:22 +0000 (02:45 -0400)
committerDavid Volovskiy <devolov@gmail.com>
Sat, 17 Aug 2024 06:45:22 +0000 (02:45 -0400)
movement/movement.c

index 2a45f8ae418d9db46a364eaab88d3a4879b6d7f6..9ebf8ecea5248548107720f4d9ee4979698c94d7 100644 (file)
@@ -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 <stdio.h>
 #include <string.h>