mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-08-05 21:33:47 +00:00
Bug fix: increase the clock channel buffer capacity to prevent in some real-time configurations eliminate valid satellite observations
This commit is contained in:
parent
145db1faa8
commit
59d70eb338
@ -93,7 +93,7 @@ hybrid_observables_gs::hybrid_observables_gs(const Obs_Conf &conf_)
|
|||||||
|
|
||||||
d_gnss_synchro_history = std::make_unique<Gnss_circular_deque<Gnss_Synchro>>(1000, d_nchannels_out);
|
d_gnss_synchro_history = std::make_unique<Gnss_circular_deque<Gnss_Synchro>>(1000, d_nchannels_out);
|
||||||
|
|
||||||
d_Rx_clock_buffer.set_capacity(std::min(std::max(200U / d_T_rx_step_ms, 3U), 10U));
|
d_Rx_clock_buffer.set_capacity(std::min(std::max(300U / d_T_rx_step_ms, 3U), 20U));
|
||||||
d_Rx_clock_buffer.clear();
|
d_Rx_clock_buffer.clear();
|
||||||
|
|
||||||
d_channel_last_pll_lock = std::vector<bool>(d_nchannels_out, false);
|
d_channel_last_pll_lock = std::vector<bool>(d_nchannels_out, false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user