1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-13 16:56:52 +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:
Javier Arribas 2013-06-14 10:04:23 +00:00
parent bb747fa059
commit 1e242e3e61
2 changed files with 9 additions and 1 deletions

View File

@ -560,7 +560,7 @@ void GNSSFlowgraph::set_signals_list()
* Loop to create the list of Galileo E1 B signals * 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 for (available_gnss_prn_iter = available_galileo_prn.begin(); available_gnss_prn_iter

View File

@ -190,6 +190,14 @@ void Gnss_Satellite::set_PRN(unsigned int PRN_)
{ {
PRN = 12; PRN = 12;
} }
else if (PRN_ == 19)
{
PRN = 19;
}
else if (PRN_ == 20)
{
PRN = 20;
}
else else
{ {
DLOG(INFO) << "This PRN is not defined"; DLOG(INFO) << "This PRN is not defined";