From 9472bbb58badaebee6f0f758c775530047667b14 Mon Sep 17 00:00:00 2001 From: Krzysiek Egzmont Date: Fri, 12 Jan 2024 15:54:18 +0100 Subject: [PATCH] Fix #384: FM radio getting stuck off on unrecognized incoming CTCSS tone --- functions.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.c b/functions.c index aed2cbf..69a70e9 100644 --- a/functions.c +++ b/functions.c @@ -267,6 +267,7 @@ void FUNCTION_Select(FUNCTION_Type_t Function) gSchedulePowerSave = false; #if defined(ENABLE_FMRADIO) - gFM_RestoreCountdown_10ms = 0; + if(Function != FUNCTION_INCOMING) + gFM_RestoreCountdown_10ms = 0; #endif }