[hamradio-commits] [gnss-sdr] 63/251: Fixing generic configuration of channels for signals 1B (Galileo E1 B)

Carles Fernandez carles_fernandez-guest at moszumanska.debian.org
Wed Sep 2 00:22:36 UTC 2015


This is an automated email from the git hooks/post-receive script.

carles_fernandez-guest pushed a commit to branch master
in repository gnss-sdr.

commit 67833c0b2f82ffccf49936cfc14655e67bb50dc1
Author: Carles Fernandez <carles.fernandez at gmail.com>
Date:   Mon May 11 20:19:26 2015 +0200

    Fixing generic configuration of channels for signals 1B (Galileo E1 B)
---
 src/core/receiver/gnss_block_factory.cc | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/core/receiver/gnss_block_factory.cc b/src/core/receiver/gnss_block_factory.cc
index efc8b41..769ccbf 100644
--- a/src/core/receiver/gnss_block_factory.cc
+++ b/src/core/receiver/gnss_block_factory.cc
@@ -368,8 +368,8 @@ std::unique_ptr<GNSSBlockInterface> GNSSBlockFactory::GetChannel_1C(
 
     std::unique_ptr<GNSSBlockInterface> pass_through_ = GetBlock(configuration, "Channel", "Pass_Through", 1, 1, queue);
     std::unique_ptr<AcquisitionInterface> acq_ = GetAcqBlock(configuration, "Acquisition_1C" + appendix1, acq, 1, 0, queue);
-    std::unique_ptr<TrackingInterface> trk_ = GetTrkBlock(configuration, "Tracking_1C"+ appendix2, trk, 1, 1, queue);
-    std::unique_ptr<TelemetryDecoderInterface> tlm_ = GetTlmBlock(configuration, "TelemetryDecoder_1C"+ appendix3, tlm, 1, 1, queue);
+    std::unique_ptr<TrackingInterface> trk_ = GetTrkBlock(configuration, "Tracking_1C "+ appendix2, trk, 1, 1, queue);
+    std::unique_ptr<TelemetryDecoderInterface> tlm_ = GetTlmBlock(configuration, "TelemetryDecoder_1C" + appendix3, tlm, 1, 1, queue);
 
     std::unique_ptr<GNSSBlockInterface> channel_(new Channel(configuration.get(), channel, pass_through_.release(),
             acq_.release(),
@@ -818,19 +818,20 @@ std::unique_ptr<std::vector<std::unique_ptr<GNSSBlockInterface>>> GNSSBlockFacto
     tracking_implementation = configuration->property("Tracking_Galileo.implementation", default_implementation); // DEPRECATED
     if (tracking_implementation.compare(default_implementation) == 0)
         {
-            tracking_implementation = configuration->property("Tracking_1B.count", 0);
+            tracking_implementation = configuration->property("Tracking_1B.implementation", std::string("W"));
+            std::cout << "HHELLO " << tracking_implementation << std::endl;
         }
 
     telemetry_decoder_implementation = configuration->property("TelemetryDecoder_Galileo.implementation", default_implementation); // DEPRECATED
     if (telemetry_decoder_implementation.compare(default_implementation) == 0)
         {
-            telemetry_decoder_implementation = configuration->property("TelemetryDecoder_1B.count", 0);
+            telemetry_decoder_implementation = configuration->property("TelemetryDecoder_1B.implementation", std::string("W"));
         }
 
     acquisition_implementation = configuration->property("Acquisition_Galileo.implementation", default_implementation); // DEPRECATED
     if (acquisition_implementation.compare(default_implementation) == 0)
         {
-            acquisition_implementation = configuration->property("Acquisition_1B.count", 0);
+            acquisition_implementation = configuration->property("Acquisition_1B.implementation", std::string("W"));
         }
 
     for (unsigned int i = 0; i < total_channels; i++)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/gnss-sdr.git



More information about the pkg-hamradio-commits mailing list