1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-10-27 13:37:38 +00:00

bds_b3i: fixing bug in b1i for d2 decoding

This commit is contained in:
Damian Miralles
2019-03-05 16:00:26 -06:00
parent 16e66834fa
commit de964d4a77
4 changed files with 20 additions and 15 deletions

View File

@@ -614,7 +614,7 @@ void dll_pll_veml_tracking::start_tracking()
uint32_t preambles_bits[BEIDOU_B1I_PREAMBLE_LENGTH_BITS] = {1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0};
for (uint32_t preambles_bit : preambles_bits)
{
for (int32_t j = 0; j < d_symbols_per_bit; j++)
for (uint32_t j = 0; j < d_symbols_per_bit; j++)
{
if (preambles_bit == 1)
{