mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 12:10:34 +00:00
Galileo FM3 (PRN 19) and FM4 (PRN20) satellites are now enabled for acquisition and tracking
git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@366 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
parent
bb747fa059
commit
1e242e3e61
@ -560,7 +560,7 @@ void GNSSFlowgraph::set_signals_list()
|
||||
* Loop to create the list of Galileo E1 B signals
|
||||
*/
|
||||
|
||||
std::set<unsigned int> available_galileo_prn = { 11, 12 };
|
||||
std::set<unsigned int> available_galileo_prn = { 11, 12 ,19, 20 };
|
||||
|
||||
|
||||
for (available_gnss_prn_iter = available_galileo_prn.begin(); available_gnss_prn_iter
|
||||
|
@ -190,6 +190,14 @@ void Gnss_Satellite::set_PRN(unsigned int PRN_)
|
||||
{
|
||||
PRN = 12;
|
||||
}
|
||||
else if (PRN_ == 19)
|
||||
{
|
||||
PRN = 19;
|
||||
}
|
||||
else if (PRN_ == 20)
|
||||
{
|
||||
PRN = 20;
|
||||
}
|
||||
else
|
||||
{
|
||||
DLOG(INFO) << "This PRN is not defined";
|
||||
|
Loading…
Reference in New Issue
Block a user