Give the frequency estimation interval to the port as well.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>master
parent
c06f3adc84
commit
f86997185e
4
config.c
4
config.c
|
@ -195,8 +195,10 @@ static void scan_global_line(const char *s, struct config *cfg)
|
|||
|
||||
} else if (1 == sscanf(s, " freq_est_interval %d", &val)) {
|
||||
|
||||
if (val >= 0)
|
||||
if (val >= 0) {
|
||||
dds->freq_est_interval = val;
|
||||
pod->freq_est_interval = val;
|
||||
}
|
||||
|
||||
} else if (1 == sscanf(s, " assume_two_step %u", &val)) {
|
||||
|
||||
|
|
Loading…
Reference in New Issue