From a39639dd8a2587998b483c9c010551e855a6aa9e Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Tue, 19 Nov 2024 19:58:44 +0100 Subject: [PATCH] Improve Wake Up (disable key action except PTT) --- app/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.c b/app/app.c index 7735002..4031202 100644 --- a/app/app.c +++ b/app/app.c @@ -1832,7 +1832,7 @@ static void ProcessKey(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld) { BACKLIGHT_TurnOn(); - if(Key == KEY_SIDE1 || Key == KEY_SIDE2) + if(Key != KEY_PTT) { Key = KEY_INVALID; }