diff options
author | Josh Blum <josh@joshknows.com> | 2013-08-16 10:49:03 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2013-08-16 10:49:03 -0700 |
commit | 9c3fd671810abf0d39d7baa78073b90b95d9b5bc (patch) | |
tree | b01c521d446e28c4df1054198ea7baa149014bf0 /host/lib | |
parent | cacc3fc99468373ff8c576a41dfa6f8f052a68d9 (diff) | |
download | uhd-9c3fd671810abf0d39d7baa78073b90b95d9b5bc.tar.gz uhd-9c3fd671810abf0d39d7baa78073b90b95d9b5bc.tar.bz2 uhd-9c3fd671810abf0d39d7baa78073b90b95d9b5bc.zip |
b200: lower clock rate is 5MHz due to DCM
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/common/ad9361_ctrl.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/usrp/common/ad9361_ctrl.hpp b/host/lib/usrp/common/ad9361_ctrl.hpp index e678ba3b0..fd8012764 100644 --- a/host/lib/usrp/common/ad9361_ctrl.hpp +++ b/host/lib/usrp/common/ad9361_ctrl.hpp @@ -99,7 +99,8 @@ public: //! 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); + //return uhd::meta_range_t(220e3, 61.44e6); + return uhd::meta_range_t(5e6, 61.44e6); //5 MHz DCM low end } //! set the filter bandwidth for the frontend |