1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-07-07 12:32:57 +00:00

Fix typo that prevented the hybrid solution

This commit is contained in:
Carles Fernandez 2015-05-10 22:24:27 +02:00
parent c99924fe5a
commit f1336ec6fd

View File

@ -662,7 +662,7 @@ std::unique_ptr<std::vector<std::unique_ptr<GNSSBlockInterface>>> GNSSBlockFacto
// Search for specific implementation of that particular channel in config file
//(i.e. Acquisition_Galileo0.implementation=xxxx) DEPRECATED
s = configuration->property("Channel" + boost::lexical_cast<std::string>(i) + ".signal", std::string("W"));
if( s.compare("IB") == 0 )
if( s.compare("1B") == 0 )
{
apply_ = true;
}