1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-09-30 07:50:51 +00:00

Only 24 SV's available

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

View File

@ -579,7 +579,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
@ -600,7 +601,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("") );