diff options
author | Nick Foster <nick@ettus.com> | 2011-06-16 13:59:15 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-16 14:16:40 -0700 |
commit | 16e783aa9c7257717d80a375ffeb592d0386f911 (patch) | |
tree | 2156647a276a46a686e47210ea2ddd98666f97f6 | |
parent | 54caee78f5bc224dde995dffd6250418b586a0bb (diff) | |
download | uhd-16e783aa9c7257717d80a375ffeb592d0386f911.tar.gz uhd-16e783aa9c7257717d80a375ffeb592d0386f911.tar.bz2 uhd-16e783aa9c7257717d80a375ffeb592d0386f911.zip |
N210 R4 lost fix for ADC data termination
-rw-r--r-- | host/lib/usrp/usrp2/codec_ctrl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp2/codec_ctrl.cpp b/host/lib/usrp/usrp2/codec_ctrl.cpp index ee0ef9ceb..06bf83b15 100644 --- a/host/lib/usrp/usrp2/codec_ctrl.cpp +++ b/host/lib/usrp/usrp2/codec_ctrl.cpp @@ -87,7 +87,9 @@ public: _ads62p44_regs.power_down = ads62p44_regs_t::POWER_DOWN_NORMAL; _ads62p44_regs.output_interface = ads62p44_regs_t::OUTPUT_INTERFACE_LVDS; _ads62p44_regs.lvds_current = ads62p44_regs_t::LVDS_CURRENT_2_5MA; + _ads62p44_regs.lvds_data_term = ads62p44_regs_t::LVDS_DATA_TERM_100; this->send_ads62p44_reg(0x11); + this->send_ads62p44_reg(0x12); this->send_ads62p44_reg(0x14); this->set_rx_analog_gain(1); break; |