Skip to content

Commit

Permalink
soapy: support newer getBandwidthRange() API call
Browse files Browse the repository at this point in the history
Switch to the newer API call which can provide a list of ranges.
There are feature detection ifdefs provided by the library
so that code will always correctly compile.
  • Loading branch information
guruofquality committed Jun 23, 2016
1 parent 860e9a1 commit ae686c4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/soapy/soapy_sink_c.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include "arg_helpers.h"
#include "soapy_sink_c.h"
#include <SoapySDR/Device.hpp>
#include <SoapySDR/Version.hpp>

using namespace boost::assign;

Expand Down Expand Up @@ -287,10 +288,17 @@ double soapy_sink_c::get_bandwidth( size_t chan)
osmosdr::freq_range_t soapy_sink_c::get_bandwidth_range( size_t chan)
{
osmosdr::meta_range_t result;
#ifdef SOAPY_SDR_API_HAS_GET_BANDWIDTH_RANGE
BOOST_FOREACH(const SoapySDR::Range &r, _device->getBandwidthRange(SOAPY_SDR_TX, 0))
{
result.push_back(osmosdr::range_t(r.minimum(), r.maximum()));
}
#else
BOOST_FOREACH(const double bw, _device->listBandwidths(SOAPY_SDR_TX, 0))
{
result.push_back(osmosdr::range_t(bw));
}
#endif
return result;
}

Expand Down
8 changes: 8 additions & 0 deletions lib/soapy/soapy_source_c.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#include "soapy_source_c.h"
#include "osmosdr/source.h"
#include <SoapySDR/Device.hpp>
#include <SoapySDR/Version.hpp>

using namespace boost::assign;

Expand Down Expand Up @@ -307,10 +308,17 @@ double soapy_source_c::get_bandwidth( size_t chan )
osmosdr::freq_range_t soapy_source_c::get_bandwidth_range( size_t chan )
{
osmosdr::meta_range_t result;
#ifdef SOAPY_SDR_API_HAS_GET_BANDWIDTH_RANGE
BOOST_FOREACH(const SoapySDR::Range &r, _device->getBandwidthRange(SOAPY_SDR_RX, 0))
{
result.push_back(osmosdr::range_t(r.minimum(), r.maximum()));
}
#else
BOOST_FOREACH(const double bw, _device->listBandwidths(SOAPY_SDR_RX, 0))
{
result.push_back(osmosdr::range_t(bw));
}
#endif
return result;
}

Expand Down

0 comments on commit ae686c4

Please sign in to comment.