diff options
author | Michael West <michael.west@ettus.com> | 2018-12-27 12:04:44 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-02 15:51:09 -0800 |
commit | 348ae82ccc961d4e20f10b92acea238ba6797519 (patch) | |
tree | 78432b251b941a2e58708a0ee55bdbf6ba9aeb47 /host/lib/usrp | |
parent | bfbedb7999c18d1e0610920fb3e24bac1aff8698 (diff) | |
download | uhd-348ae82ccc961d4e20f10b92acea238ba6797519.tar.gz uhd-348ae82ccc961d4e20f10b92acea238ba6797519.tar.bz2 uhd-348ae82ccc961d4e20f10b92acea238ba6797519.zip |
TwinRX: Fix tuning
- Set SPI clock back to 3 MHz
- Fix returned frequency for ADF5355 (rev A and B boards)
Diffstat (limited to 'host/lib/usrp')
-rw-r--r-- | host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp b/host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp index 0b7c8674c..7ed01f624 100644 --- a/host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp +++ b/host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp @@ -27,7 +27,7 @@ namespace { const double TWINRX_DESIRED_REFERENCE_FREQ = 50e6; const double TWINRX_REV_AB_PFD_FREQ = 6.25e6; const double TWINRX_REV_C_PFD_FREQ = 12.5e6; - const double TWINRX_SPI_CLOCK_FREQ = 10e6; + const double TWINRX_SPI_CLOCK_FREQ = 3e6; } class twinrx_ctrl_impl : public twinrx_ctrl { |