0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-27 22:01:26 +03:00

Squelch thresholds slight adjustment, SQ was a bit too sensitive

This commit is contained in:
OneOfEleven 2024-01-09 11:32:52 +00:00
parent c882c3f301
commit 4166bf5358
3 changed files with 6 additions and 6 deletions

Binary file not shown.

Binary file not shown.

12
radio.c
View File

@ -551,13 +551,13 @@ void RADIO_ConfigureSquelch(vfo_info_t *p_vfo)
#else
// a bit more sensitive
rssi_open = (rssi_open * 1) / 3;
noise_open = (noise_open * 3) / 1;
glitch_open = (glitch_open * 3) / 1;
rssi_open = (rssi_open * 1) / 2;
noise_open = (noise_open * 2) / 1;
glitch_open = (glitch_open * 2) / 1;
rssi_close = (rssi_close * 1) / 3;
noise_close = (noise_close * 3) / 1;
glitch_close = (glitch_close * 3) / 1;
rssi_close = (rssi_close * 1) / 2;
noise_close = (noise_close * 2) / 1;
glitch_close = (glitch_close * 2) / 1;
#endif