diff --git a/lib/osmosdr_device.cc b/lib/osmosdr_device.cc index aaef32a..3043645 100644 --- a/lib/osmosdr_device.cc +++ b/lib/osmosdr_device.cc @@ -32,7 +32,9 @@ /* #define ENABLE_OSMOSDR #define ENABLE_FCD +#define ENABLE_FILE #define ENABLE_RTL +#define ENABLE_RTL_TCP #define ENABLE_UHD #define ENABLE_MIRI */ @@ -44,10 +46,18 @@ #include #endif +#ifdef ENABLE_FILE +#include +#endif + #ifdef ENABLE_RTL #include #endif +#ifdef ENABLE_RTL_TCP +#include +#endif + #ifdef ENABLE_UHD #include #endif @@ -115,10 +125,18 @@ devices_t device::find(const device_t &hint) BOOST_FOREACH( std::string dev, fcd_source::get_devices() ) devices.push_back( device_t(dev) ); #endif +#ifdef ENABLE_FILE + BOOST_FOREACH( std::string dev, file_source_c::get_devices() ) + devices.push_back( device_t(dev) ); +#endif #ifdef ENABLE_RTL BOOST_FOREACH( std::string dev, rtl_source_c::get_devices() ) devices.push_back( device_t(dev) ); #endif +#ifdef ENABLE_RTL_TCP + BOOST_FOREACH( std::string dev, rtl_tcp_source_c::get_devices() ) + devices.push_back( device_t(dev) ); +#endif #ifdef ENABLE_UHD BOOST_FOREACH( std::string dev, uhd_source_c::get_devices() ) devices.push_back( device_t(dev) ); diff --git a/lib/osmosdr_source_c_impl.cc b/lib/osmosdr_source_c_impl.cc index 208513c..ed78423 100644 --- a/lib/osmosdr_source_c_impl.cc +++ b/lib/osmosdr_source_c_impl.cc @@ -91,7 +91,9 @@ osmosdr_source_c_impl::osmosdr_source_c_impl (const std::string &args) std::vector< std::string > dev_types; +#ifdef ENABLE_FILE dev_types.push_back("file"); +#endif #ifdef ENABLE_OSMOSDR dev_types.push_back("osmosdr"); #endif @@ -101,7 +103,9 @@ osmosdr_source_c_impl::osmosdr_source_c_impl (const std::string &args) #ifdef ENABLE_RTL dev_types.push_back("rtl"); #endif +#ifdef ENABLE_RTL_TCP dev_types.push_back("rtl_tcp"); +#endif #ifdef ENABLE_UHD dev_types.push_back("uhd"); #endif