diff options
author | Vidush <vidush.vishwanath@ettus.com> | 2018-04-20 15:56:17 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-04-30 16:09:16 -0700 |
commit | 8922095b2c3a8dd1c764d7b80d3128c44721597b (patch) | |
tree | e09e20a233fe35c54fffd8cdadcd0cf47796166e /host/lib/usrp | |
parent | 02493f86ad1cecf389dd5abfd97488027b2b9ab0 (diff) | |
download | uhd-8922095b2c3a8dd1c764d7b80d3128c44721597b.tar.gz uhd-8922095b2c3a8dd1c764d7b80d3128c44721597b.tar.bz2 uhd-8922095b2c3a8dd1c764d7b80d3128c44721597b.zip |
lib: Change check_radio_config() to iterate over channels, not radios.
Diffstat (limited to 'host/lib/usrp')
-rw-r--r-- | host/lib/usrp/x300/x300_radio_ctrl_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp b/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp index 524480dc6..6208de231 100644 --- a/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp +++ b/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp @@ -1227,7 +1227,7 @@ bool x300_radio_ctrl_impl::check_radio_config() { UHD_RFNOC_BLOCK_TRACE() << "x300_radio_ctrl_impl::check_radio_config() " ; const fs_path rx_fe_path = fs_path("dboards" / _radio_slot / "rx_frontends"); - for (size_t chan = 0; chan < _get_num_radios(); chan++) { + for (size_t chan = 0; chan < _num_rx_channels; chan++) { if (_tree->exists(rx_fe_path / _rx_fe_map.at(chan).db_fe_name / "enabled")) { const bool chan_active = _is_streamer_active(uhd::RX_DIRECTION, chan); if (chan_active) { @@ -1239,7 +1239,7 @@ bool x300_radio_ctrl_impl::check_radio_config() } const fs_path tx_fe_path = fs_path("dboards" / _radio_slot / "tx_frontends"); - for (size_t chan = 0; chan < _get_num_radios(); chan++) { + for (size_t chan = 0; chan < _num_tx_channels; chan++) { if (_tree->exists(tx_fe_path / _tx_fe_map.at(chan).db_fe_name / "enabled")) { const bool chan_active = _is_streamer_active(uhd::TX_DIRECTION, chan); if (chan_active) { |