From f3654090d9df5c1437e128ae4a13617d069f586d Mon Sep 17 00:00:00 2001 From: Ben Hilburn Date: Mon, 21 Nov 2011 15:42:18 -0800 Subject: UHD will now print 'L' whenever a late packet is transmitted. This is similiar to printing 'U' and 'S'. This functionality is not yet supported on the USRP1. --- host/lib/usrp/usrp2/io_impl.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'host/lib/usrp/usrp2') diff --git a/host/lib/usrp/usrp2/io_impl.cpp b/host/lib/usrp/usrp2/io_impl.cpp index f3a00c119..62941ac79 100644 --- a/host/lib/usrp/usrp2/io_impl.cpp +++ b/host/lib/usrp/usrp2/io_impl.cpp @@ -225,6 +225,9 @@ void usrp2_impl::io_impl::recv_pirate_loop( ( async_metadata_t::EVENT_CODE_SEQ_ERROR | async_metadata_t::EVENT_CODE_SEQ_ERROR_IN_BURST) ) UHD_MSG(fastpath) << "S"; + else if (metadata.event_code & + async_metadata_t::EVENT_CODE_TIME_ERROR + ) UHD_MSG(fastpath) << "L"; } else{ //TODO unknown received packet, may want to print error... -- cgit v1.2.3