aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp2/usrp2_impl.hpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-10-13 14:28:52 -0700
committerJosh Blum <josh@joshknows.com>2010-10-13 14:28:52 -0700
commitc6042a0b317a6f74d2b74b259f14431f5c8246d4 (patch)
tree3297836dc8ebeb52f9882e01f1d4abc922d436ee /host/lib/usrp/usrp2/usrp2_impl.hpp
parent4dfb7b8cabef3097f822ac52f346cd6021cb35da (diff)
downloaduhd-c6042a0b317a6f74d2b74b259f14431f5c8246d4.tar.gz
uhd-c6042a0b317a6f74d2b74b259f14431f5c8246d4.tar.bz2
uhd-c6042a0b317a6f74d2b74b259f14431f5c8246d4.zip
usrp2: added docs on flow control ricer args and using usrp2 with a switch
implemented flow control param hints in the mboard impl
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_impl.hpp')
-rw-r--r--host/lib/usrp/usrp2/usrp2_impl.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_impl.hpp b/host/lib/usrp/usrp2/usrp2_impl.hpp
index 2077b0a50..3aa6e9cd5 100644
--- a/host/lib/usrp/usrp2/usrp2_impl.hpp
+++ b/host/lib/usrp/usrp2/usrp2_impl.hpp
@@ -85,7 +85,8 @@ public:
size_t index,
uhd::transport::udp_simple::sptr,
size_t recv_samps_per_packet,
- size_t send_bytes_per_packet
+ size_t send_bytes_per_packet,
+ const uhd::device_addr_t &flow_control_hints
);
~usrp2_mboard_impl(void);
@@ -178,10 +179,12 @@ public:
* Create a new usrp2 impl base.
* \param ctrl_transports the udp transports for control
* \param data_transports the udp transports for data
+ * \param flow_control_hints optional flow control params
*/
usrp2_impl(
std::vector<uhd::transport::udp_simple::sptr> ctrl_transports,
- std::vector<uhd::transport::zero_copy_if::sptr> data_transports
+ std::vector<uhd::transport::zero_copy_if::sptr> data_transports,
+ const uhd::device_addr_t &flow_control_hints
);
~usrp2_impl(void);