From ad66c3b807245a8c0b4ea78e0c5d980d71726d89 Mon Sep 17 00:00:00 2001 From: Aidan MacDonald Date: Sat, 20 Nov 2021 02:38:00 +0000 Subject: touchscreen: use repeat acceleration for button input Touch devices have physical buttons too, and these should be subject to repeat acceleration. That feature was disabled for the sake of better touch event responsiveness (apparently). So, re-enable the acceleration feature & add a special case to exempt BUTTON_TOUCHSCREEN from acceleration. Change-Id: I9e097e27457fbd6b824f098e8b325ff35c59dde4 --- firmware/drivers/button.c | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) (limited to 'firmware') diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c index 5addfee3de..0af51dc3b2 100644 --- a/firmware/drivers/button.c +++ b/firmware/drivers/button.c @@ -70,27 +70,21 @@ static bool enable_sw_poweroff = true; /* how long until repeat kicks in, in centiseconds */ #define REPEAT_START (30*HZ/100) -#ifndef HAVE_TOUCHSCREEN -/* the next two make repeat "accelerate", which is nice for lists +/* The next two make repeat "accelerate", which is nice for lists * which begin to scroll a bit faster when holding until the - * real list accerelation kicks in (this smoothes acceleration) + * real list accerelation kicks in (this smooths acceleration). + * + * Note that touchscreen pointing events are not subject to this + * acceleration and always use REPEAT_INTERVAL_TOUCH. (Do repeat + * events even do anything sane for touchscreens??) */ /* the speed repeat starts at, in centiseconds */ #define REPEAT_INTERVAL_START (16*HZ/100) /* speed repeat finishes at, in centiseconds */ #define REPEAT_INTERVAL_FINISH (5*HZ/100) -#else -/* - * on touchscreen it's different, scrolling is done by swiping over the - * screen (potentially very quickly) and is completely different from button - * targets - * So, on touchscreen we don't want to artifically slow down early repeats, - * it'd have the contrary effect of making rockbox appear lagging - */ -#define REPEAT_INTERVAL_START (5*HZ/100) -#define REPEAT_INTERVAL_FINISH (5*HZ/100) -#endif +/* repeat interval for touch events */ +#define REPEAT_INTERVAL_TOUCH (5*HZ/100) #ifdef HAVE_BUTTON_DATA static int button_read(int *data); @@ -275,6 +269,11 @@ static void button_tick(void) /* yes we have repeat */ if (repeat_speed > REPEAT_INTERVAL_FINISH) repeat_speed--; +#ifdef HAVE_TOUCHSCREEN + if(btn & BUTTON_TOUCHSCREEN) + repeat_speed = REPEAT_INTERVAL_TOUCH; +#endif + count = repeat_speed; repeat_count++; -- cgit v1.2.3