From 07c98b983e0ab3e075039455fbe75ff9b1536cbe Mon Sep 17 00:00:00 2001 From: Youngjae Cho Date: Fri, 19 Nov 2021 12:01:32 +0900 Subject: [PATCH] input: change shortkey/longkey interval Change-Id: I466c591b754c906fe9b77854e4fca43b4f78ac26 Signed-off-by: Youngjae Cho --- plugins/iot-headless/input/input-handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/iot-headless/input/input-handler.c b/plugins/iot-headless/input/input-handler.c index 2c293d0..a70755d 100644 --- a/plugins/iot-headless/input/input-handler.c +++ b/plugins/iot-headless/input/input-handler.c @@ -28,8 +28,8 @@ #define KEYVALUE_PRESS 1 #define KEYVALUE_RELEASE 0 -#define LONGPRESS_INTERVAL 10000 /* milisecond */ -#define SHORTPRESS_INTERVAL 3000 /* milisecond */ +#define LONGPRESS_INTERVAL 4000 /* milisecond */ +#define SHORTPRESS_INTERVAL 2000 /* milisecond */ /* milisecond */ static int longpress_interval = LONGPRESS_INTERVAL; -- 2.7.4