From 8d3a78da9dd988ee5704a83eedd7c71ba8a87607 Mon Sep 17 00:00:00 2001 From: Martin DvH Date: Wed, 21 Apr 2010 08:18:33 -0700 Subject: Fix sequence error indication after stopping then restarting streaming on USRP2. --- usrp2/host/lib/usrp2_impl.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'usrp2/host/lib') diff --git a/usrp2/host/lib/usrp2_impl.cc b/usrp2/host/lib/usrp2_impl.cc index 5592c76ea..882ad7414 100644 --- a/usrp2/host/lib/usrp2_impl.cc +++ b/usrp2/host/lib/usrp2_impl.cc @@ -840,6 +840,7 @@ namespace usrp2 { success = transmit_cmd_and_wait(&cmd, sizeof(cmd), &p, DEF_CMD_TIMEOUT); success = success && (ntohx(reply.ok) == 1); d_channel_rings[channel].reset(); + d_rx_seqno = -1; //fprintf(stderr, "usrp2::stop_rx_streaming: success = %d\n", success); return success; } -- cgit From 9038b3530d0ec746f401f3c443e2f862fff5a18e Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Wed, 28 Apr 2010 17:32:44 -0700 Subject: Really fix the missing include for boost::bind --- usrp2/host/lib/usrp2_impl.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'usrp2/host/lib') diff --git a/usrp2/host/lib/usrp2_impl.cc b/usrp2/host/lib/usrp2_impl.cc index 882ad7414..333e2d1e7 100644 --- a/usrp2/host/lib/usrp2_impl.cc +++ b/usrp2/host/lib/usrp2_impl.cc @@ -25,6 +25,7 @@ #include #include #include +#include #include #include "usrp2_impl.h" #include "eth_buffer.h" -- cgit