From 988515ab19a715773086a7a8c023ddb8249c7e37 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 14 Nov 2016 14:30:34 -0800 Subject: Device3: Change packet-based flow control to byte-based flow control --- host/lib/usrp/x300/x300_io_impl.cpp | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'host/lib/usrp/x300/x300_io_impl.cpp') diff --git a/host/lib/usrp/x300/x300_io_impl.cpp b/host/lib/usrp/x300/x300_io_impl.cpp index 082d83185..af5aa7c9e 100644 --- a/host/lib/usrp/x300/x300_io_impl.cpp +++ b/host/lib/usrp/x300/x300_io_impl.cpp @@ -7,19 +7,9 @@ #include "x300_regs.hpp" #include "x300_impl.hpp" -#include "../../transport/super_recv_packet_handler.hpp" -#include "../../transport/super_send_packet_handler.hpp" -#include -#include -#include -#include -#include -#include -#include using namespace uhd; using namespace uhd::usrp; -using namespace uhd::transport; /*********************************************************************** * Hooks for get_tx_stream() and get_rx_stream() @@ -62,8 +52,8 @@ void x300_impl::post_streamer_hooks(direction_t dir) // Loop through all tx streamers. Find all radios connected to one // streamer. Sync those. for(const boost::weak_ptr &streamer_w: _tx_streamers.vals()) { - const boost::shared_ptr streamer = - boost::dynamic_pointer_cast(streamer_w.lock()); + const boost::shared_ptr streamer = + boost::dynamic_pointer_cast(streamer_w.lock()); if (not streamer) { continue; } -- cgit v1.2.3