diff options
author | Josh Blum <josh@joshknows.com> | 2010-12-22 16:02:09 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-12-22 16:02:09 -0800 |
commit | de45f2234ca7ce8a1efd79525323bef55f1f9d44 (patch) | |
tree | 435dce2c2e8ff862f84cb47d0bc81f867d2fad1d /host/lib/usrp/usrp2/io_impl.cpp | |
parent | b6983381e46f5bb1156da2e40580a97fd09b9e37 (diff) | |
download | uhd-de45f2234ca7ce8a1efd79525323bef55f1f9d44.tar.gz uhd-de45f2234ca7ce8a1efd79525323bef55f1f9d44.tar.bz2 uhd-de45f2234ca7ce8a1efd79525323bef55f1f9d44.zip |
udp_ports: enable async recv in xport, set performance params in top level, things working
Diffstat (limited to 'host/lib/usrp/usrp2/io_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp2/io_impl.cpp b/host/lib/usrp/usrp2/io_impl.cpp index d11031f3c..5a6c0983c 100644 --- a/host/lib/usrp/usrp2/io_impl.cpp +++ b/host/lib/usrp/usrp2/io_impl.cpp @@ -356,7 +356,7 @@ static UHD_INLINE void extract_packet_info( time = extract_time_spec(next_info); clear = extract_time_spec(prev_info) > time; - msg = prev_info.packet_type != vrt::if_packet_info_t::PACKET_TYPE_DATA; + msg = next_info.packet_type != vrt::if_packet_info_t::PACKET_TYPE_DATA; prev_info = next_info; } |