summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/drivers/button.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c
index 171acaaded..0d0d1cd7ad 100644
--- a/firmware/drivers/button.c
+++ b/firmware/drivers/button.c
@@ -69,14 +69,14 @@ static bool remote_filter_first_keypress;
69static bool phones_present = false; 69static bool phones_present = false;
70#endif 70#endif
71 71
72/* how long until repeat kicks in, in ticks */ 72/* how long until repeat kicks in, in centiseconds */
73#define REPEAT_START 30 73#define REPEAT_START (30*HZ/100)
74 74
75/* the speed repeat starts at, in ticks */ 75/* the speed repeat starts at, in centiseconds */
76#define REPEAT_INTERVAL_START 16 76#define REPEAT_INTERVAL_START (16*HZ/100)
77 77
78/* speed repeat finishes at, in ticks */ 78/* speed repeat finishes at, in centiseconds */
79#define REPEAT_INTERVAL_FINISH 5 79#define REPEAT_INTERVAL_FINISH (5*HZ/100)
80 80
81#ifdef HAVE_BUTTON_DATA 81#ifdef HAVE_BUTTON_DATA
82static int button_read(int *data); 82static int button_read(int *data);