diff options
Diffstat (limited to 'gr-uhd/lib/usrp_sink_impl.cc')
-rw-r--r-- | gr-uhd/lib/usrp_sink_impl.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gr-uhd/lib/usrp_sink_impl.cc b/gr-uhd/lib/usrp_sink_impl.cc index 349271f720..d38ffc344d 100644 --- a/gr-uhd/lib/usrp_sink_impl.cc +++ b/gr-uhd/lib/usrp_sink_impl.cc @@ -214,6 +214,18 @@ namespace gr { return _dev->set_tx_bandwidth(bandwidth, chan); } + double + usrp_sink_impl::get_bandwidth(size_t chan) + { + return _dev->get_tx_bandwidth(chan); + } + + ::uhd::freq_range_t + usrp_sink_impl::get_bandwidth_range(size_t chan) + { + return _dev->get_tx_bandwidth_range(chan); + } + void usrp_sink_impl::set_dc_offset(const std::complex<double> &offset, size_t chan) |