diff options
author | Josh Blum <josh@joshknows.com> | 2012-01-16 22:31:03 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-01-23 13:03:09 -0800 |
commit | b8e41cbbc9666a9758d0f9f3a57272530716935a (patch) | |
tree | fc8eb1546d5ac4ab3ec5ae742335b45144fa0bc2 /host/lib/usrp/b100 | |
parent | 287958ba36072f699090aa61ad2b6bbee6846d66 (diff) | |
download | uhd-b8e41cbbc9666a9758d0f9f3a57272530716935a.tar.gz uhd-b8e41cbbc9666a9758d0f9f3a57272530716935a.tar.bz2 uhd-b8e41cbbc9666a9758d0f9f3a57272530716935a.zip |
uhd: flush transport for new rx streamers
Diffstat (limited to 'host/lib/usrp/b100')
-rw-r--r-- | host/lib/usrp/b100/io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b100/io_impl.cpp b/host/lib/usrp/b100/io_impl.cpp index 7e4cd6f8e..692ede6d5 100644 --- a/host/lib/usrp/b100/io_impl.cpp +++ b/host/lib/usrp/b100/io_impl.cpp @@ -236,7 +236,7 @@ rx_streamer::sptr b100_impl::get_rx_stream(const uhd::stream_args_t &args_){ _rx_dsps[dsp]->set_format(args.otw_format, sc8_scalar); my_streamer->set_xport_chan_get_buff(chan_i, boost::bind( &recv_packet_demuxer::get_recv_buff, _io_impl->demuxer, dsp, _1 - )); + ), true /*flush*/); my_streamer->set_overflow_handler(chan_i, boost::bind( &rx_dsp_core_200::handle_overflow, _rx_dsps[dsp] )); |