aboutsummaryrefslogtreecommitdiffstats
path: root/lib/source_impl.cc
diff options
context:
space:
mode:
authorClayton Smith <argilo@gmail.com>2020-10-28 20:10:47 -0400
committerEric Wild <ewild@sysmocom.de>2020-11-01 00:12:56 +0100
commitfe03d837038884bfde2efe63cbf8ead4b846a3c8 (patch)
tree356913f7eb2b6901f97c737425dcb5629ea7198d /lib/source_impl.cc
parent2d504bde50a0c560a9d31b7b38982bd44cc7fe9d (diff)
Remove disabled OsmoSDR and MiriSDR code
OsmoSDR and MiriSDR support was disabled in v0.2.1 because the hardware is rare and obsolete. I think it would be useful to completely remove the associated code, since this will reduce the future maintenance burden for gr-osmosdr. Signed-off-by: Eric Wild <ewild@sysmocom.de>
Diffstat (limited to 'lib/source_impl.cc')
-rw-r--r--lib/source_impl.cc36
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/source_impl.cc b/lib/source_impl.cc
index 41c45bf..8f8efef 100644
--- a/lib/source_impl.cc
+++ b/lib/source_impl.cc
@@ -32,10 +32,6 @@
#include <gnuradio/blocks/throttle.h>
#include <gnuradio/constants.h>
-#ifdef ENABLE_OSMOSDR
-#include <osmosdr_src_c.h>
-#endif
-
#ifdef ENABLE_FCD
#include <fcd_source_c.h>
#endif
@@ -56,10 +52,6 @@
#include <uhd_source_c.h>
#endif
-#ifdef ENABLE_MIRI
-#include <miri_source_c.h>
-#endif
-
#ifdef ENABLE_SDRPLAY
#include <sdrplay_source_c.h>
#endif
@@ -128,9 +120,6 @@ source_impl::source_impl( const std::string &args )
#ifdef ENABLE_FILE
dev_types.push_back("file");
#endif
-#ifdef ENABLE_OSMOSDR
- dev_types.push_back("osmosdr");
-#endif
#ifdef ENABLE_FCD
dev_types.push_back("fcd");
#endif
@@ -143,9 +132,6 @@ source_impl::source_impl( const std::string &args )
#ifdef ENABLE_UHD
dev_types.push_back("uhd");
#endif
-#ifdef ENABLE_MIRI
- dev_types.push_back("miri");
-#endif
#ifdef ENABLE_SDRPLAY
dev_types.push_back("sdrplay");
#endif
@@ -200,10 +186,6 @@ source_impl::source_impl( const std::string &args )
if ( ! device_specified ) {
std::vector< std::string > dev_list;
-#ifdef ENABLE_OSMOSDR
- for (std::string dev : osmosdr_src_c::get_devices())
- dev_list.push_back( dev );
-#endif
#ifdef ENABLE_FCD
for (std::string dev : fcd_source_c::get_devices())
dev_list.push_back( dev );
@@ -216,10 +198,6 @@ source_impl::source_impl( const std::string &args )
for (std::string dev : uhd_source_c::get_devices())
dev_list.push_back( dev );
#endif
-#ifdef ENABLE_MIRI
- for (std::string dev : miri_source_c::get_devices())
- dev_list.push_back( dev );
-#endif
#ifdef ENABLE_SDRPLAY
for (std::string dev : sdrplay_source_c::get_devices())
dev_list.push_back( dev );
@@ -278,13 +256,6 @@ source_impl::source_impl( const std::string &args )
source_iface *iface = NULL;
gr::basic_block_sptr block;
-#ifdef ENABLE_OSMOSDR
- if ( dict.count("osmosdr") ) {
- osmosdr_src_c_sptr src = osmosdr_make_src_c( arg );
- block = src; iface = src.get();
- }
-#endif
-
#ifdef ENABLE_FCD
if ( dict.count("fcd") ) {
fcd_source_c_sptr src = make_fcd_source_c( arg );
@@ -320,13 +291,6 @@ source_impl::source_impl( const std::string &args )
}
#endif
-#ifdef ENABLE_MIRI
- if ( dict.count("miri") ) {
- miri_source_c_sptr src = make_miri_source_c( arg );
- block = src; iface = src.get();
- }
-#endif
-
#ifdef ENABLE_SDRPLAY
if ( dict.count("sdrplay") ) {
sdrplay_source_c_sptr src = make_sdrplay_source_c( arg );