diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-03-15 10:54:50 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-04-12 14:02:45 -0500 |
commit | af894ef3ccb5cdbc83f60b04249ce33847f8ad86 (patch) | |
tree | 25b4255dd70876c52dde3b462e469d3affaed69d /host/lib/usrp/dboard | |
parent | 532f8d0949c1d534b1a64600f2d32aadf2c7e202 (diff) | |
download | uhd-af894ef3ccb5cdbc83f60b04249ce33847f8ad86.tar.gz uhd-af894ef3ccb5cdbc83f60b04249ce33847f8ad86.tar.bz2 uhd-af894ef3ccb5cdbc83f60b04249ce33847f8ad86.zip |
n320: Fix address for RX frontend control
The RX FE core was using the address for the TX FE core.
Diffstat (limited to 'host/lib/usrp/dboard')
-rw-r--r-- | host/lib/usrp/dboard/rhodium/rhodium_radio_control_init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/rhodium/rhodium_radio_control_init.cpp b/host/lib/usrp/dboard/rhodium/rhodium_radio_control_init.cpp index ced621cda..f19298697 100644 --- a/host/lib/usrp/dboard/rhodium/rhodium_radio_control_init.cpp +++ b/host/lib/usrp/dboard/rhodium/rhodium_radio_control_init.cpp @@ -160,7 +160,7 @@ void rhodium_radio_control_impl::_init_peripherals() _tx_fe_core->populate_subtree(get_tree()->subtree(FE_PATH / "tx_fe_corrections" / 0)); RFNOC_LOG_TRACE("Initializing RX frontend DSP core...") - _rx_fe_core = rx_frontend_core_3000::make(_wb_iface, n320_regs::SR_TX_FE_BASE); + _rx_fe_core = rx_frontend_core_3000::make(_wb_iface, n320_regs::SR_RX_FE_BASE); _rx_fe_core->set_adc_rate(_master_clock_rate); _rx_fe_core->set_dc_offset(rx_frontend_core_3000::DEFAULT_DC_OFFSET_VALUE); _rx_fe_core->set_dc_offset_auto(rx_frontend_core_3000::DEFAULT_DC_OFFSET_ENABLE); |