diff options
author | Josh Blum <josh@joshknows.com> | 2013-07-19 14:45:24 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2013-07-19 14:45:24 -0700 |
commit | d251a7a55b198aa61ae05809c2e601a04fcb9b97 (patch) | |
tree | 8125a0fb523cefbe897c43001c0685578d2b0ca0 /host/lib/usrp/common/ad9361_ctrl.hpp | |
parent | ae1459c7c6078727d7acfabb397db105da547a55 (diff) | |
download | uhd-d251a7a55b198aa61ae05809c2e601a04fcb9b97.tar.gz uhd-d251a7a55b198aa61ae05809c2e601a04fcb9b97.tar.bz2 uhd-d251a7a55b198aa61ae05809c2e601a04fcb9b97.zip |
b200: use existing query rate calls to clip
Diffstat (limited to 'host/lib/usrp/common/ad9361_ctrl.hpp')
-rw-r--r-- | host/lib/usrp/common/ad9361_ctrl.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/common/ad9361_ctrl.hpp b/host/lib/usrp/common/ad9361_ctrl.hpp index 6d79ef3e9..e678ba3b0 100644 --- a/host/lib/usrp/common/ad9361_ctrl.hpp +++ b/host/lib/usrp/common/ad9361_ctrl.hpp @@ -87,7 +87,7 @@ public: //! get the freq range for the frontend which static uhd::meta_range_t get_rf_freq_range(void) { - return uhd::meta_range_t(30e6, 6e9); + return uhd::meta_range_t(50e6, 6e9); } //! get the filter range for the frontend which @@ -96,8 +96,8 @@ public: return uhd::meta_range_t(200e3, 56e6); } - //! get the filter range for the frontend which - static uhd::meta_range_t get_samp_rate_range(void) + //! get the clock rate range for the frontend + static uhd::meta_range_t get_clock_rate_range(void) { return uhd::meta_range_t(220e3, 61.44e6); } |