From a9c77939df67107799f30460ec1466ef9fa436e3 Mon Sep 17 00:00:00 2001 From: Anthony Arnold Date: Thu, 30 Apr 2015 17:25:03 +1000 Subject: [PATCH] OsmoSdr args --- src/algorithms/signal_source/adapters/osmosdr_signal_source.cc | 3 ++- src/algorithms/signal_source/adapters/osmosdr_signal_source.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/algorithms/signal_source/adapters/osmosdr_signal_source.cc b/src/algorithms/signal_source/adapters/osmosdr_signal_source.cc index 80e6ab4e5..28b7c4a0f 100644 --- a/src/algorithms/signal_source/adapters/osmosdr_signal_source.cc +++ b/src/algorithms/signal_source/adapters/osmosdr_signal_source.cc @@ -65,6 +65,7 @@ OsmosdrSignalSource::OsmosdrSignalSource(ConfigurationInterface* configuration, if_gain_ = configuration->property(role + ".if_gain", (double)40.0); sample_rate_ = configuration->property(role + ".sampling_frequency", (double)2.0e6); item_type_ = configuration->property(role + ".item_type", default_item_type); + osmosdr_args_ = configuration->property(role + ".osmosdr_args", std::string( )); if (item_type_.compare("short") == 0) { @@ -76,7 +77,7 @@ OsmosdrSignalSource::OsmosdrSignalSource(ConfigurationInterface* configuration, // 1. Make the driver instance try { - osmosdr_source_ = osmosdr::source::make(); + osmosdr_source_ = osmosdr::source::make(osmosdr_args_); } catch( boost::exception & e ) { diff --git a/src/algorithms/signal_source/adapters/osmosdr_signal_source.h b/src/algorithms/signal_source/adapters/osmosdr_signal_source.h index 6204a0ac0..0fffe7b18 100644 --- a/src/algorithms/signal_source/adapters/osmosdr_signal_source.h +++ b/src/algorithms/signal_source/adapters/osmosdr_signal_source.h @@ -100,6 +100,7 @@ private: std::string dump_filename_; osmosdr::source::sptr osmosdr_source_; + std::string osmosdr_args_; boost::shared_ptr valve_; gr::blocks::file_sink::sptr file_sink_;