From 75df9b7bb805b57162a932d5cf8cea6448c7bf99 Mon Sep 17 00:00:00 2001 From: Federico Amedeo Izzo Date: Mon, 22 Mar 2021 21:52:17 +0100 Subject: [PATCH] Set default squelch to S3 --- openrtx/src/state.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openrtx/src/state.c b/openrtx/src/state.c index fcd07484..14b24bb8 100644 --- a/openrtx/src/state.c +++ b/openrtx/src/state.c @@ -66,7 +66,8 @@ void state_init() #ifdef HAS_ABSOLUTE_KNOB // If the radio has an absolute position knob state.sqlLevel = platform_getChSelector() - 1; #else - state.sqlLevel = 3; + // Default Squelch: S3 = 4 + state.sqlLevel = 4; #endif state.voxLevel = 0;