mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +00:00
Fix headers
This commit is contained in:
parent
2f83d1e733
commit
30a72d5c06
@ -1,6 +1,8 @@
|
||||
(item_type_ == "gr_complex") /*!
|
||||
* \file raw_array_signal_source.cc
|
||||
* \brief CTTC Experimental GNSS 8 channels array signal source
|
||||
/*!
|
||||
* \file flexiband_signal_source.cc
|
||||
* \brief ignal Source adapter for the Teleorbit Flexiband front-end device.
|
||||
* This adapter requires a Flexiband GNU Radio driver
|
||||
* installed (not included with GNSS-SDR)
|
||||
* \author Javier Arribas, jarribas(at)cttc.es
|
||||
*
|
||||
* -------------------------------------------------------------------------
|
||||
@ -36,10 +38,16 @@
|
||||
#include <teleorbit/frontend.h>
|
||||
|
||||
|
||||
using google::LogMessage;
|
||||
using google::LogMessage;
|
||||
|
||||
FlexibandSignalSource::FlexibandSignalSource(ConfigurationInterface* configuration,
|
||||
const std::string& role, unsigned int in_stream, unsigned int out_stream, gr::msg_queue::sptr queue) : role_(role), in_stream_(in_stream), out_stream_(out_stream), queue_(queue)
|
||||
const std::string& role,
|
||||
unsigned int in_stream,
|
||||
unsigned int out_stream,
|
||||
gr::msg_queue::sptr queue) : role_(role),
|
||||
in_stream_(in_stream),
|
||||
out_stream_(out_stream),
|
||||
queue_(queue)
|
||||
{
|
||||
std::string default_item_type = "byte";
|
||||
item_type_ = configuration->property(role + ".item_type", default_item_type);
|
||||
|
@ -1,7 +1,8 @@
|
||||
/*!
|
||||
* \file raw_array_signal_source.h
|
||||
* \brief Signal Source adapter for the Teleorbit Flexiband front-end device.
|
||||
* This adapter requires a Flexiband GNURadio driver installed (not included with GNSS-SDR)
|
||||
* \file flexiband_signal_source.h
|
||||
* \brief ignal Source adapter for the Teleorbit Flexiband front-end device.
|
||||
* This adapter requires a Flexiband GNU Radio driver
|
||||
* installed (not included with GNSS-SDR)
|
||||
* \author Javier Arribas, jarribas(at)cttc.es
|
||||
*
|
||||
* -------------------------------------------------------------------------
|
||||
@ -30,8 +31,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef FLEXIBAND_SIGNAL_SOURCE_H_
|
||||
#define FLEXIBAND_SIGNAL_SOURCE_H_
|
||||
#ifndef GNSS_SDR_FLEXIBAND_SIGNAL_SOURCE_H_
|
||||
#define GNSS_SDR_FLEXIBAND_SIGNAL_SOURCE_H_
|
||||
|
||||
#include "gnss_block_interface.h"
|
||||
#include <gnuradio/blocks/char_to_float.h>
|
||||
@ -108,4 +109,4 @@ private:
|
||||
boost::shared_ptr<gr::msg_queue> queue_;
|
||||
};
|
||||
|
||||
#endif /*FLEXIBAND_SIGNAL_SOURCE_H_*/
|
||||
#endif // GNSS_SDR_FLEXIBAND_SIGNAL_SOURCE_H_
|
||||
|
Loading…
Reference in New Issue
Block a user