diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-31 12:11:43 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-31 12:11:43 -0700 |
commit | 11c83c60100a52d309e21684731908a199353919 (patch) | |
tree | b818849766a7c1b97c3d2cd7f95285f9ff973aa8 /host/lib/usrp/usrp2/io_impl.cpp | |
parent | 99494305b35adf5c4f89b4888192c723f32d9da2 (diff) | |
download | uhd-11c83c60100a52d309e21684731908a199353919.tar.gz uhd-11c83c60100a52d309e21684731908a199353919.tar.bz2 uhd-11c83c60100a52d309e21684731908a199353919.zip |
usrp2: flush the error flow messages, issue the stop before register configure to align count
Diffstat (limited to 'host/lib/usrp/usrp2/io_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/io_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp2/io_impl.cpp b/host/lib/usrp/usrp2/io_impl.cpp index 9e29edd82..4e883cf81 100644 --- a/host/lib/usrp/usrp2/io_impl.cpp +++ b/host/lib/usrp/usrp2/io_impl.cpp @@ -113,7 +113,7 @@ void usrp2_impl::io_impl::recv_pirate_loop( metadata.event_code = vrt_packet_handler::get_context_code<async_metadata_t::event_code_t>(vrt_hdr, if_packet_info); //print the famous U, and push the metadata into the message queue - if (metadata.event_code & underflow_flags) std::cerr << "U"; + if (metadata.event_code & underflow_flags) std::cerr << "U" << std::flush; async_msg_fifo->push_with_pop_on_full(metadata); continue; } @@ -121,7 +121,7 @@ void usrp2_impl::io_impl::recv_pirate_loop( //handle the packet count / sequence number if (if_packet_info.packet_count != next_packet_seq){ //std::cerr << "S" << (if_packet_info.packet_count - next_packet_seq)%16; - std::cerr << "O"; //report overflow (drops in the kernel) + std::cerr << "O" << std::flush; //report overflow (drops in the kernel) } next_packet_seq = (if_packet_info.packet_count+1)%16; |