diff options
author | Mark Meserve <mark.meserve@ni.com> | 2018-12-06 13:47:39 -0600 |
---|---|---|
committer | Brent Stapleton <bstapleton@g.hmc.edu> | 2018-12-07 10:19:23 -0800 |
commit | 400642eda5acf68342529baa7cb3b66a072c7b97 (patch) | |
tree | 1af7ddd8dd49ee9940383c92dddd2a5419df40cc | |
parent | dfcc8bc211ce9251b500d69744dca95fc70e6541 (diff) | |
download | uhd-400642eda5acf68342529baa7cb3b66a072c7b97.tar.gz uhd-400642eda5acf68342529baa7cb3b66a072c7b97.tar.bz2 uhd-400642eda5acf68342529baa7cb3b66a072c7b97.zip |
rh: fixed lowband tuning
- Sometimes, SW1 was not updated when a switch to lowband occurred.
-rw-r--r-- | host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.cpp b/host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.cpp index 3de3f36f1..76fe45cef 100644 --- a/host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.cpp +++ b/host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.cpp @@ -185,7 +185,8 @@ double rhodium_radio_ctrl_impl::set_tx_frequency( radio_ctrl_impl::set_tx_frequency(coerced_freq, chan); _update_tx_freq_switches(coerced_freq); // if TX lowband/highband changed and antenna is TX/RX, - // the ATR needs to be updated + // the ATR and SW1 need to be updated + _update_tx_output_switches(get_tx_antenna(0)); _update_atr(get_tx_antenna(0), TX_DIRECTION); return coerced_freq; |