From f1336ec6fd613a63740979359c94c814a6ba43b9 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 10 May 2015 22:24:27 +0200 Subject: [PATCH] Fix typo that prevented the hybrid solution --- src/core/receiver/gnss_block_factory.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/receiver/gnss_block_factory.cc b/src/core/receiver/gnss_block_factory.cc index 3801312cd..213f7a536 100644 --- a/src/core/receiver/gnss_block_factory.cc +++ b/src/core/receiver/gnss_block_factory.cc @@ -631,8 +631,8 @@ std::unique_ptr>> GNSSBlockFacto { channel_count = configuration->property("Channels_1B.count", 0); } - - LOG(INFO) << "Getting " << channel_count << " Galileo E1 B (I/NAV OS) channels"; + + LOG(INFO) << "Getting " << channel_count << " Galileo E1 B (I/NAV OS) channels"; tracking_implementation = configuration->property("Tracking_Galileo.implementation", default_implementation); // DEPRECATED if (tracking_implementation.compare(default_implementation) == 0) @@ -662,7 +662,7 @@ std::unique_ptr>> 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(i) + ".signal", std::string("W")); - if( s.compare("IB") == 0 ) + if( s.compare("1B") == 0 ) { apply_ = true; }