diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-01 14:03:04 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-01 14:03:04 -0700 |
commit | 38eefb2eeaa9c5d83da8abcf5b7efa8eba5fe413 (patch) | |
tree | f8e282851a2e8cca568771601d3a6edacffd2784 /host/lib/usrp/usrp2 | |
parent | 16afe14e35ee7c79d24cbd933060af1c7cbafb13 (diff) | |
download | uhd-38eefb2eeaa9c5d83da8abcf5b7efa8eba5fe413.tar.gz uhd-38eefb2eeaa9c5d83da8abcf5b7efa8eba5fe413.tar.bz2 uhd-38eefb2eeaa9c5d83da8abcf5b7efa8eba5fe413.zip |
usrp: moved fx2 stuff into common folder
Diffstat (limited to 'host/lib/usrp/usrp2')
-rw-r--r-- | host/lib/usrp/usrp2/io_impl.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/host/lib/usrp/usrp2/io_impl.cpp b/host/lib/usrp/usrp2/io_impl.cpp index 64c099ff6..0c583f3ca 100644 --- a/host/lib/usrp/usrp2/io_impl.cpp +++ b/host/lib/usrp/usrp2/io_impl.cpp @@ -52,11 +52,6 @@ static UHD_INLINE double from_time_dur(const pt::time_duration &time_dur){ /*********************************************************************** * constants **********************************************************************/ -static const int underflow_flags = 0 - | async_metadata_t::EVENT_CODE_UNDERFLOW - | async_metadata_t::EVENT_CODE_UNDERFLOW_IN_PACKET -; - static const size_t vrt_send_header_offset_words32 = 1; /*********************************************************************** @@ -219,11 +214,17 @@ void usrp2_impl::io_impl::recv_pirate_loop( fc_mon.update_fc_condition(uhd::ntohx(fc_word32)); continue; } - - //print the famous U, and push the metadata into the message queue - if (metadata.event_code & underflow_flags) UHD_MSG(fastpath) << "U"; //else UHD_MSG(often) << "metadata.event_code " << metadata.event_code << std::endl; async_msg_fifo.push_with_pop_on_full(metadata); + + if (metadata.event_code & + ( async_metadata_t::EVENT_CODE_UNDERFLOW + | async_metadata_t::EVENT_CODE_UNDERFLOW_IN_PACKET) + ) UHD_MSG(fastpath) << "U"; + else if (metadata.event_code & + ( async_metadata_t::EVENT_CODE_SEQ_ERROR + | async_metadata_t::EVENT_CODE_SEQ_ERROR_IN_BURST) + ) UHD_MSG(fastpath) << "S"; } else{ //TODO unknown received packet, may want to print error... |