diff options
author | Josh Blum <josh@joshknows.com> | 2010-10-11 19:54:11 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-10-11 19:54:11 -0700 |
commit | 80469eedb76994b39a40ff94e31c4de924fc33e2 (patch) | |
tree | 891f33b987d28ce7c937f8efad599a9d83721518 /host/include | |
parent | 02b25d347e9b4cf23be2b84fb43db01471ad6ec3 (diff) | |
parent | 3b36c206e56b415974ed83a52a652b65f9de1add (diff) | |
download | uhd-80469eedb76994b39a40ff94e31c4de924fc33e2.tar.gz uhd-80469eedb76994b39a40ff94e31c4de924fc33e2.tar.bz2 uhd-80469eedb76994b39a40ff94e31c4de924fc33e2.zip |
Merge branch 'set_bandwidth'
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/usrp/mimo_usrp.hpp | 2 | ||||
-rw-r--r-- | host/include/uhd/usrp/simple_usrp.hpp | 2 | ||||
-rw-r--r-- | host/include/uhd/usrp/single_usrp.hpp | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/host/include/uhd/usrp/mimo_usrp.hpp b/host/include/uhd/usrp/mimo_usrp.hpp index 10a404059..bdd84a148 100644 --- a/host/include/uhd/usrp/mimo_usrp.hpp +++ b/host/include/uhd/usrp/mimo_usrp.hpp @@ -148,6 +148,8 @@ public: * \return the rssi in dB */ virtual float read_rssi(size_t chan) = 0; + + virtual void set_rx_bandwidth(size_t chan, float bandwidth) = 0; /******************************************************************* * TX methods diff --git a/host/include/uhd/usrp/simple_usrp.hpp b/host/include/uhd/usrp/simple_usrp.hpp index 6149f739c..6f3597ed7 100644 --- a/host/include/uhd/usrp/simple_usrp.hpp +++ b/host/include/uhd/usrp/simple_usrp.hpp @@ -139,6 +139,8 @@ public: virtual float read_rssi(void) = 0; virtual dboard_iface::sptr get_rx_dboard_iface(void) = 0; + + virtual void set_rx_bandwidth(float) = 0; /******************************************************************* * TX methods diff --git a/host/include/uhd/usrp/single_usrp.hpp b/host/include/uhd/usrp/single_usrp.hpp index 3cd263bce..fa6498d13 100644 --- a/host/include/uhd/usrp/single_usrp.hpp +++ b/host/include/uhd/usrp/single_usrp.hpp @@ -152,6 +152,8 @@ public: virtual float read_rssi(size_t chan = 0) = 0; virtual dboard_iface::sptr get_rx_dboard_iface(size_t chan = 0) = 0; + + virtual void set_rx_bandwidth(float bandwidth, size_t chan = 0) = 0; /******************************************************************* * TX methods |