mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-03-13 23:18:15 +00:00
Fix bug in correlator spacing
This commit is contained in:
parent
7460176808
commit
b36773edf4
@ -147,11 +147,11 @@ galileo_e1_dll_pll_veml_tracking_cc::galileo_e1_dll_pll_veml_tracking_cc(
|
||||
|
||||
d_local_code_shift_chips = static_cast<float*>(volk_malloc(d_n_correlator_taps * sizeof(float), volk_get_alignment()));
|
||||
// Set TAPs delay values [chips]
|
||||
d_local_code_shift_chips[0] = - d_very_early_late_spc_chips * 2.0;
|
||||
d_local_code_shift_chips[1] = - d_very_early_late_spc_chips;
|
||||
d_local_code_shift_chips[0] = - d_very_early_late_spc_chips;
|
||||
d_local_code_shift_chips[1] = - d_early_late_spc_chips;
|
||||
d_local_code_shift_chips[2] = 0.0;
|
||||
d_local_code_shift_chips[3] = d_very_early_late_spc_chips;
|
||||
d_local_code_shift_chips[4] = d_very_early_late_spc_chips * 2.0;
|
||||
d_local_code_shift_chips[3] = d_early_late_spc_chips;
|
||||
d_local_code_shift_chips[4] = d_very_early_late_spc_chips;
|
||||
|
||||
d_correlation_length_samples = d_vector_length;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user