From 44d617bba0cd59e485452395dd5e9cfd824c24e0 Mon Sep 17 00:00:00 2001 From: erikkaashoek Date: Mon, 31 Aug 2020 06:54:52 +0200 Subject: [PATCH] Better step delay --- sa_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sa_core.c b/sa_core.c index 06bd919..cedad6e 100644 --- a/sa_core.c +++ b/sa_core.c @@ -863,7 +863,7 @@ void calculate_step_delay(void) if (actual_rbw_x10 >= 2700) { SI4432_step_delay = 200; SI4432_offset_delay = 100; } else if (actual_rbw_x10 >= 800) { SI4432_step_delay = 250; 150; SI4432_offset_delay = 100; } else if (actual_rbw_x10 >= 250) { SI4432_step_delay = 600; 450; SI4432_offset_delay = 100; } - else { SI4432_step_delay = 2000; SI4432_offset_delay =1600; } + else { SI4432_step_delay = 4000; SI4432_offset_delay =1600; } #endif if (setting.step_delay_mode == SD_PRECISE) // In precise mode wait twice as long for RSSI to stabalize SI4432_step_delay *= 2;