1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-15 04:30:33 +00:00

Rename volk_gnsssdr_32f_xn_fast_resampler_32f_xn to volk_gnsssdr_32f_xn_high_dynamics_resampler_32f_xn

This commit is contained in:
Carles Fernandez 2018-08-23 19:52:01 +02:00
parent 41527fb921
commit bbcc0bee36
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
3 changed files with 3 additions and 3 deletions

View File

@ -362,7 +362,7 @@ dll_pll_veml_tracking::dll_pll_veml_tracking(const Dll_Pll_Conf &conf_) : gr::bl
}
// --- Initializations ---
multicorrelator_cpu.set_fast_resampler(trk_parameters.use_fast_resampler);
multicorrelator_cpu.set_high_dynamics_resampler(trk_parameters.use_high_dynamics_resampler);
// Initial code frequency basis of NCO
d_code_freq_chips = d_code_chip_rate;
// Residual code phase (in chips)

View File

@ -36,7 +36,7 @@
Dll_Pll_Conf::Dll_Pll_Conf()
{
/* DLL/PLL tracking configuration */
use_fast_resampler = true;
use_high_dynamics_resampler = true;
fs_in = 0.0;
vector_length = 0U;
dump = false;

View File

@ -56,7 +56,7 @@ public:
float early_late_space_narrow_chips;
float very_early_late_space_narrow_chips;
int32_t extend_correlation_symbols;
bool use_fast_resampler;
bool use_high_dynamics_resampler;
int32_t cn0_samples;
int32_t carrier_lock_det_mav_samples;
int32_t cn0_min;