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:
@@ -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));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user