diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-07-06 15:50:05 +0200 |
---|---|---|
committer | michael-west <michael.west@ettus.com> | 2020-07-08 12:47:47 -0700 |
commit | f9ad947cdc31379a07d4b52509864734b8300208 (patch) | |
tree | 1e1622a60bdcd421a48d50be74517218a28d0c3c /host | |
parent | feb05cba75177cbaf7979a34fb172cc317e85454 (diff) | |
download | uhd-f9ad947cdc31379a07d4b52509864734b8300208.tar.gz uhd-f9ad947cdc31379a07d4b52509864734b8300208.tar.bz2 uhd-f9ad947cdc31379a07d4b52509864734b8300208.zip |
e3xx: Remove superfluous comments
This removes some comment that include code that still gets executed.
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp b/host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp index 49a9a9bda..8cb28caaa 100644 --- a/host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp +++ b/host/lib/usrp/dboard/e3xx/e3xx_radio_control_impl.cpp @@ -430,15 +430,6 @@ void e3xx_radio_control_impl::loopback_self_test(const size_t chan) const double current_rate = this->get_rate(); // Set 2R2T mode, stream on all channels this->set_streaming_mode(true, true, true, true); - // This was in there in the E320 code, but the comments didn't make sense: - // this->set_streaming_mode(true, true, true, true); - // Set maximum rate for 2R2T mode - /* FIXME - * We're directly setting the master clock rate here because we want to - * avoid property propagation, etc, and we know that we're going to set it - * back once we're done - * this->set_rate(30.72e6); - */ _ad9361->set_clock_rate(30.72e6); // Put AD936x in loopback mode _ad9361->data_port_loopback(true); @@ -492,8 +483,6 @@ void e3xx_radio_control_impl::loopback_self_test(const size_t chan) _ad9361->data_port_loopback(false); this->set_streaming_mode(true, false, true, false); // Switch back to current rate - // FIXME along with the other comment above - // this->set_rate(current_rate); _ad9361->set_clock_rate(current_rate); } |