Setting default squelch level at boot to S3 for all platforms. Solves #44

pull/46/head
Silvano Seva 2021-10-18 21:05:32 +02:00
rodzic 17cdf3c67b
commit 83fdfc4367
1 zmienionych plików z 2 dodań i 7 usunięć

Wyświetl plik

@ -72,12 +72,7 @@ void state_init()
}
state.zone_enabled = false;
state.rtxStatus = RTX_OFF;
#ifdef HAS_ABSOLUTE_KNOB // If the radio has an absolute position knob
state.sqlLevel = platform_getChSelector() - 1;
#else
// Default Squelch: S3 = 4
state.sqlLevel = 4;
#endif
state.sqlLevel = 4; // Default Squelch: S3 = 4
state.voxLevel = 0;
state.emergency = false;