From 31b4b8a9f6fb5aa25a5fc140fdbe20fba36ff83a Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Sat, 2 Mar 2024 21:12:53 +0100 Subject: [PATCH] Add F + SIDE1 and F + SIDE2 for Step --- app/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.c b/app/main.c index 6785c17..7d44ed7 100644 --- a/app/main.c +++ b/app/main.c @@ -769,8 +769,10 @@ void MAIN_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld) // } switch (Key) { +#ifdef ENABLE_FEAT_F4HWN case KEY_SIDE1: case KEY_SIDE2: +#endif case KEY_0...KEY_9: MAIN_Key_DIGITS(Key, bKeyPressed, bKeyHeld); break;