From de8c501d65a7fd95bac5f96f8b9e69d8dadba3ca Mon Sep 17 00:00:00 2001 From: Krzysiek Egzmont Date: Mon, 18 Dec 2023 15:27:31 +0100 Subject: [PATCH] S0, S9 settings even more constrained --- settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.c b/settings.c index 95bf57696..6735be467 100644 --- a/settings.c +++ b/settings.c @@ -137,7 +137,7 @@ void SETTINGS_InitEEPROM(void) gEeprom.VOICE_PROMPT = (Data[0] < 3) ? Data[0] : VOICE_PROMPT_ENGLISH; #endif #ifdef ENABLE_RSSI_BAR - if((Data[1] < 200 && Data[1] > 90) && (Data[2] < Data[1]-9 && Data[2] > 50)) { + if((Data[1] < 200 && Data[1] > 90) && (Data[2] < Data[1]-9 && Data[1] < 160 && Data[2] > 50)) { gEeprom.S0_LEVEL = Data[1]; gEeprom.S9_LEVEL = Data[2]; }