mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-13 19:50:34 +00:00
Fixed broken flowgraph
This commit is contained in:
parent
b4b51562c5
commit
fbfbf0247a
@ -509,7 +509,7 @@ void GNSSFlowgraph::set_signals_list()
|
||||
* Loop to create the list of GNSS Signals
|
||||
* To add signals from other systems, add another loop 'for'
|
||||
*/
|
||||
if (default_system.compare(std::string("GPS")) == 0 )
|
||||
if (default_system.find(std::string("GPS")) != std::string::npos )
|
||||
{
|
||||
/*
|
||||
* Loop to create GPS L1 C/A signals
|
||||
@ -528,7 +528,7 @@ void GNSSFlowgraph::set_signals_list()
|
||||
}
|
||||
|
||||
|
||||
if (default_system.compare(std::string("SBAS")) == 0 )
|
||||
if (default_system.find(std::string("SBAS")) != std::string::npos)
|
||||
{
|
||||
/*
|
||||
* Loop to create SBAS L1 C/A signals
|
||||
@ -545,7 +545,7 @@ void GNSSFlowgraph::set_signals_list()
|
||||
}
|
||||
|
||||
|
||||
if (default_system.find(std::string("Galileo")) )
|
||||
if (default_system.find(std::string("Galileo")) != std::string::npos)
|
||||
{
|
||||
/*
|
||||
* Loop to create the list of Galileo E1 B signals
|
||||
|
Loading…
Reference in New Issue
Block a user