diff options
author | Matthew Crymble <matthew.crymble@ni.com> | 2021-06-22 18:35:49 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-24 11:43:17 -0500 |
commit | 0326bdcc964917501bb0111d3ce65467edb437f3 (patch) | |
tree | a2d081a0760107268e98e87872588896a80d94a1 /host/lib | |
parent | b3ec3d4de5ed22a920ce5cfcb3c49d5d16767548 (diff) | |
download | uhd-0326bdcc964917501bb0111d3ce65467edb437f3.tar.gz uhd-0326bdcc964917501bb0111d3ce65467edb437f3.tar.bz2 uhd-0326bdcc964917501bb0111d3ce65467edb437f3.zip |
b200: temporary change to remove stream restart after overflow
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/b200/b200_io_impl.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/host/lib/usrp/b200/b200_io_impl.cpp b/host/lib/usrp/b200/b200_io_impl.cpp index ac87a0e34..1231b52cc 100644 --- a/host/lib/usrp/b200/b200_io_impl.cpp +++ b/host/lib/usrp/b200/b200_io_impl.cpp @@ -508,10 +508,15 @@ void b200_impl::handle_overflow(const size_t radio_index) stream_cmd.stream_now = false; stream_cmd.time_spec = _radio_perifs[radio_index].time64->get_time_now() + time_spec_t(0.01); - my_streamer->issue_stream_cmd(stream_cmd); + // FIXME: temporarily remove the start stream command. + // This will avoid an issue that gets the b210 in a bad state. + // my_streamer->issue_stream_cmd(stream_cmd); } - } else - _radio_perifs[radio_index].framer->handle_overflow(); + } else { + // FIXME: temporarily remove the overflow handling that re-issues a start + // command. This will avoid an issue that gets the b210 in a bad state. + // _radio_perifs[radio_index].framer->handle_overflow(); + } } /*********************************************************************** |