1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-09-07 21:16:49 +00:00

Only 24 SV's available

This commit is contained in:
Gastd 2017-06-01 20:56:01 -03:00
parent bc3a95c4f8
commit ce69d7f35a

View File

@ -581,7 +581,8 @@ void GNSSFlowgraph::set_signals_list()
unsigned int total_channels = configuration_->property("Channels_1C.count", 0) +
configuration_->property("Channels_2S.count", 0) +
configuration_->property("Channels_1B.count", 0) +
configuration_->property("Channels_5X.count", 0);
configuration_->property("Channels_5X.count", 0) +
configuration_->property("Channels_1G.count", 0);
/*
* Loop to create the list of GNSS Signals
@ -602,7 +603,7 @@ void GNSSFlowgraph::set_signals_list()
* Only 24 operational
*/
std::set<unsigned int> available_glonass_prn = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27};
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24};
std::string sv_list = configuration_->property("Galileo.prns", std::string("") );