diff options
author | michael-west <michael.west@ettus.com> | 2020-12-08 15:39:25 -0800 |
---|---|---|
committer | michael-west <michael.west@ettus.com> | 2020-12-09 12:56:47 -0800 |
commit | 71137999430afaca18bfff179e6a3c4b0276d54c (patch) | |
tree | 42b2c28a91f8a4699c9c98009e258eaed9c53ea8 /host/lib/usrp | |
parent | d72041827ab0c545ea1011c0ff84359a4f46cf0d (diff) | |
download | uhd-71137999430afaca18bfff179e6a3c4b0276d54c.tar.gz uhd-71137999430afaca18bfff179e6a3c4b0276d54c.tar.bz2 uhd-71137999430afaca18bfff179e6a3c4b0276d54c.zip |
fixup! N310: Low band IF adjustments
Diffstat (limited to 'host/lib/usrp')
-rw-r--r-- | host/lib/usrp/dboard/magnesium/magnesium_radio_control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/magnesium/magnesium_radio_control.cpp b/host/lib/usrp/dboard/magnesium/magnesium_radio_control.cpp index 5b5c2d663..5eb0f63a5 100644 --- a/host/lib/usrp/dboard/magnesium/magnesium_radio_control.cpp +++ b/host/lib/usrp/dboard/magnesium/magnesium_radio_control.cpp @@ -317,7 +317,7 @@ double magnesium_radio_control_impl::set_rx_frequency( const std::string ad9371_source = this->get_rx_lo_source(MAGNESIUM_LO1, chan); const std::string adf4351_source = this->get_rx_lo_source(MAGNESIUM_LO2, chan); UHD_ASSERT_THROW(adf4351_source == "internal"); - double coerced_if_freq = freq; + double coerced_if_freq = 0; if (_map_freq_to_rx_band(_rx_band_map, freq) == rx_band::LOWBAND) { _is_low_band[RX_DIRECTION] = true; |