diff options
author | Thomas Tsou <ttsou@vt.edu> | 2010-08-19 12:37:56 -0700 |
---|---|---|
committer | Thomas Tsou <ttsou@vt.edu> | 2010-08-19 12:37:56 -0700 |
commit | 7ce6f4752c436eb3d1b027bd8e9e8bdb05f4f43b (patch) | |
tree | 9068b64b242833b76d9c242161352cc33e563621 /host | |
parent | 5ac2f224154c819c0e0a788cbcd98da764950e70 (diff) | |
download | uhd-7ce6f4752c436eb3d1b027bd8e9e8bdb05f4f43b.tar.gz uhd-7ce6f4752c436eb3d1b027bd8e9e8bdb05f4f43b.tar.bz2 uhd-7ce6f4752c436eb3d1b027bd8e9e8bdb05f4f43b.zip |
usrp1: Remove codec gain TODO comments
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/usrp1/codec_ctrl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/usrp1/codec_ctrl.cpp b/host/lib/usrp/usrp1/codec_ctrl.cpp index 419e4c5e2..a618eff6d 100644 --- a/host/lib/usrp/usrp1/codec_ctrl.cpp +++ b/host/lib/usrp/usrp1/codec_ctrl.cpp @@ -100,15 +100,15 @@ usrp1_codec_ctrl_impl::usrp1_codec_ctrl_impl(usrp1_iface::sptr iface, _ad9862_regs.byp_buffer_b = 1; _ad9862_regs.buffer_a_pd = 1; _ad9862_regs.buffer_b_pd = 1; - _ad9862_regs.rx_pga_a = 0;//0x1f; //TODO bring under api control - _ad9862_regs.rx_pga_b = 0;//0x1f; //TODO bring under api control + _ad9862_regs.rx_pga_a = 0; + _ad9862_regs.rx_pga_b = 0; _ad9862_regs.rx_twos_comp = 1; _ad9862_regs.rx_hilbert = ad9862_regs_t::RX_HILBERT_DIS; //setup tx side of codec _ad9862_regs.two_data_paths = ad9862_regs_t::TWO_DATA_PATHS_BOTH; _ad9862_regs.interleaved = ad9862_regs_t::INTERLEAVED_INTERLEAVED; - _ad9862_regs.tx_pga_gain = 199; //TODO bring under api control + _ad9862_regs.tx_pga_gain = 199; _ad9862_regs.tx_hilbert = ad9862_regs_t::TX_HILBERT_DIS; _ad9862_regs.interp = ad9862_regs_t::INTERP_4; _ad9862_regs.tx_twos_comp = 1; |