diff options
Diffstat (limited to 'gr-uhd/lib/usrp_source_impl.cc')
-rw-r--r-- | gr-uhd/lib/usrp_source_impl.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gr-uhd/lib/usrp_source_impl.cc b/gr-uhd/lib/usrp_source_impl.cc index 813f707178..c5df60222a 100644 --- a/gr-uhd/lib/usrp_source_impl.cc +++ b/gr-uhd/lib/usrp_source_impl.cc @@ -220,6 +220,18 @@ namespace gr { return _dev->set_rx_bandwidth(bandwidth, chan); } + double + usrp_source_impl::get_bandwidth(size_t chan) + { + return _dev->get_rx_bandwidth(chan); + } + + ::uhd::freq_range_t + usrp_source_impl::get_bandwidth_range(size_t chan) + { + return _dev->get_rx_bandwidth_range(chan); + } + void usrp_source_impl::set_auto_dc_offset(const bool enable, size_t chan) { |