[hamradio-commits] [gnss-sdr] 46/60: Code cleaning

Carles Fernandez carles_fernandez-guest at moszumanska.debian.org
Sun Mar 22 11:15:44 UTC 2015


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

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

commit f0b9e03dcdf604b52a184486043d1f9b9e41cfd4
Author: Carles Fernandez <carles.fernandez at gmail.com>
Date:   Wed Mar 4 21:09:44 2015 +0100

    Code cleaning
---
 .../adapters/flexiband_signal_source.cc            | 81 +++++++++++-----------
 .../adapters/flexiband_signal_source.h             |  6 +-
 2 files changed, 43 insertions(+), 44 deletions(-)

diff --git a/src/algorithms/signal_source/adapters/flexiband_signal_source.cc b/src/algorithms/signal_source/adapters/flexiband_signal_source.cc
index 9fec7f2..4e2307b 100644
--- a/src/algorithms/signal_source/adapters/flexiband_signal_source.cc
+++ b/src/algorithms/signal_source/adapters/flexiband_signal_source.cc
@@ -52,37 +52,37 @@ FlexibandSignalSource::FlexibandSignalSource(ConfigurationInterface* configurati
     gain2_ = configuration->property(role + ".gain2", 0); // check gain DAC values for Flexiband frontend!
     gain3_ = configuration->property(role + ".gain3", 0); // check gain DAC values for Flexiband frontend!
 
-    AGC_ = configuration->property(role + ".AGC", true); // enabed AGC by default
+    AGC_ = configuration->property(role + ".AGC", true); // enabled AGC by default
 
-    usb_packet_buffer_size_ =configuration->property(role + ".usb_packet_buffer", 128);
+    usb_packet_buffer_size_ = configuration->property(role + ".usb_packet_buffer", 128);
 
     RF_channels_ = configuration->property(role + ".RF_channels", 1);
 
     if (item_type_.compare("gr_complex") == 0)
-    {
+        {
             item_size_ = sizeof(gr_complex);
-            flexiband_source_ = gr::teleorbit::frontend::make(firmware_filename_.c_str(),gain1_,gain2_,gain3_, AGC_, usb_packet_buffer_size_);
+            flexiband_source_ = gr::teleorbit::frontend::make(firmware_filename_.c_str(), gain1_, gain2_, gain3_, AGC_, usb_packet_buffer_size_);
 
             //create I, Q -> gr_complex type conversion blocks
-            for (int n=0;n<(RF_channels_*2);n++)
-            {
-                char_to_float.push_back(gr::blocks::char_to_float::make());
-            }
+            for (int n = 0; n < (RF_channels_ * 2); n++)
+                {
+                    char_to_float.push_back(gr::blocks::char_to_float::make());
+                }
 
-            for (int n=0;n<(RF_channels_);n++)
-            {
-                float_to_complex_.push_back(gr::blocks::float_to_complex::make());
-            }
+            for (int n = 0; n < RF_channels_; n++)
+                {
+                    float_to_complex_.push_back(gr::blocks::float_to_complex::make());
+                }
 
             DLOG(INFO) << "Item size " << item_size_;
-            DLOG(INFO) << "Firmware file "<<firmware_filename_;
+            DLOG(INFO) << "Firmware file " << firmware_filename_;
             DLOG(INFO) << "flexiband_source_(" << flexiband_source_->unique_id() << ")";
-
-    }else
-    {
+        }
+    else
+        {
             LOG(WARNING) << item_type_ << " unrecognized item type for flexiband_source_";
             item_size_ = sizeof(gr_complex);
-    }
+        }
 }
 
 
@@ -94,35 +94,34 @@ FlexibandSignalSource::~FlexibandSignalSource()
 
 void FlexibandSignalSource::connect(gr::top_block_sptr top_block)
 {
-    for (int n=0;n<(RF_channels_*2);n++)
-    {
-    	  top_block->connect(flexiband_source_, n, char_to_float.at(n), 0);
-    	  DLOG(INFO) << "connected flexiband_source_ to char_to_float CH"<<n;
-    }
-    for (int n=0;n<RF_channels_;n++)
-    {
-    	  top_block->connect(char_to_float.at(n*2), 0, float_to_complex_.at(n), 0);
-    	  top_block->connect(char_to_float.at(n*2+1), 0, float_to_complex_.at(n), 1);
-    	  DLOG(INFO) << "connected char_to_float to float_to_complex_ CH"<<n;
-    }
-
+    for (int n = 0; n < (RF_channels_ * 2); n++)
+        {
+            top_block->connect(flexiband_source_, n, char_to_float.at(n), 0);
+            DLOG(INFO) << "connected flexiband_source_ to char_to_float CH" << n;
+        }
+    for (int n = 0; n < RF_channels_; n++)
+        {
+            top_block->connect(char_to_float.at(n * 2), 0, float_to_complex_.at(n), 0);
+            top_block->connect(char_to_float.at(n * 2 + 1), 0, float_to_complex_.at(n), 1);
+            DLOG(INFO) << "connected char_to_float to float_to_complex_ CH" << n;
+        }
 }
 
 
 
 void FlexibandSignalSource::disconnect(gr::top_block_sptr top_block)
 {
-    for (int n=0;n<(RF_channels_*2);n++)
-    {
-    	  top_block->disconnect(flexiband_source_, n, char_to_float.at(n), 0);
-    	  DLOG(INFO) << "disconnect flexiband_source_ to char_to_float CH"<<n;
-    }
-    for (int n=0;n<RF_channels_;n++)
-    {
-    	top_block->disconnect(char_to_float.at(n*2), 0, float_to_complex_.at(n), 0);
-    	top_block->disconnect(char_to_float.at(n*2+1), 0, float_to_complex_.at(n), 1);
-    	  DLOG(INFO) << "disconnect char_to_float to float_to_complex_ CH"<<n;
-    }
+    for (int n = 0; n < (RF_channels_ * 2); n++)
+        {
+            top_block->disconnect(flexiband_source_, n, char_to_float.at(n), 0);
+            DLOG(INFO) << "disconnect flexiband_source_ to char_to_float CH" << n;
+        }
+    for (int n = 0; n < RF_channels_; n++)
+        {
+            top_block->disconnect(char_to_float.at(n * 2), 0, float_to_complex_.at(n), 0);
+            top_block->disconnect(char_to_float.at(n * 2 + 1), 0, float_to_complex_.at(n), 1);
+            DLOG(INFO) << "disconnect char_to_float to float_to_complex_ CH" << n;
+        }
 }
 
 
@@ -135,7 +134,7 @@ gr::basic_block_sptr FlexibandSignalSource::get_left_block()
 
 gr::basic_block_sptr FlexibandSignalSource::get_right_block()
 {
-	return get_right_block(0);
+    return get_right_block(0);
 }
 
 gr::basic_block_sptr FlexibandSignalSource::get_right_block(int RF_channel)
diff --git a/src/algorithms/signal_source/adapters/flexiband_signal_source.h b/src/algorithms/signal_source/adapters/flexiband_signal_source.h
index 22fd56b..2a61736 100644
--- a/src/algorithms/signal_source/adapters/flexiband_signal_source.h
+++ b/src/algorithms/signal_source/adapters/flexiband_signal_source.h
@@ -47,12 +47,12 @@ class ConfigurationInterface;
 
 /*!
  * \brief This class configures and reads samples from Teleorbit Flexiband front-end.
- * This software requires a Flexiband GNURadio driver installed (not included with GNSS-SDR).
+ * This software requires a Flexiband GNU Radio driver installed (not included with GNSS-SDR).
  */
 class FlexibandSignalSource: public GNSSBlockInterface
 {
 public:
-	FlexibandSignalSource(ConfigurationInterface* configuration,
+    FlexibandSignalSource(ConfigurationInterface* configuration,
             std::string role, unsigned int in_stream,
             unsigned int out_stream, gr::msg_queue::sptr queue);
 
@@ -63,7 +63,7 @@ public:
     }
 
     /*!
-     * \brief Returns "FlexibandSignalSource".
+     * \brief Returns "Flexiband_Signal_Source".
      */
     std::string implementation()
     {

-- 
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