diff options
author | ejk <ejkreinar@gmail.com> | 2016-12-28 12:11:07 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-02-27 16:30:50 -0800 |
commit | 79a797d5b376fbfa51ffcd42d57956e83b4903c9 (patch) | |
tree | 0e7a1ce8e36cd4af38aafc6a7360a8214c21c79d /host/include | |
parent | 0802747072b3b8506f992141deb40af0f9df0b81 (diff) | |
download | uhd-79a797d5b376fbfa51ffcd42d57956e83b4903c9.tar.gz uhd-79a797d5b376fbfa51ffcd42d57956e83b4903c9.tar.bz2 uhd-79a797d5b376fbfa51ffcd42d57956e83b4903c9.zip |
Rfnoc: Exposed analog lowpass bandwidth option in X300 ctrls
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/rfnoc/radio_ctrl.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/host/include/uhd/rfnoc/radio_ctrl.hpp b/host/include/uhd/rfnoc/radio_ctrl.hpp index 1d7842051..fe9636b32 100644 --- a/host/include/uhd/rfnoc/radio_ctrl.hpp +++ b/host/include/uhd/rfnoc/radio_ctrl.hpp @@ -148,6 +148,20 @@ public: */ virtual double set_rx_gain(const double gain, const size_t chan) = 0; + /*! Return the analog filter bandwidth channel \p chan + * + * \return The actual bandwidth value + */ + // virtual double get_rx_bandwidth(const double bandwidth, const size_t chan) = 0; + + /*! Set the analog filter bandwidth channel \p chan + * + * This function will attempt to set the analog bandwidth. + * + * \return The actual bandwidth value + */ + virtual double set_rx_bandwidth(const double bandwidth, const size_t chan) = 0; + /*! Sets the time in the radio's timekeeper to the given value. * * Note that there is a non-deterministic delay between calling this |