1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-10-18 17:17:42 +00:00

Artemisa tracking is almost working. Code cleaning, refactoring and renaming is in progress!

This commit is contained in:
Javier Arribas
2015-11-16 19:23:25 +01:00
parent c2e254debc
commit 27588fa83b
7 changed files with 419 additions and 74 deletions

View File

@@ -101,7 +101,7 @@ float dll_nc_e_minus_l_normalized(gr_complex early_s1, gr_complex late_s1)
float P_early, P_late;
P_early = std::abs(early_s1);
P_late = std::abs(late_s1);
return (P_early - P_late) / ((P_early + P_late));
return 0.5*(P_early - P_late) / ((P_early + P_late));
}
/*