diff options
author | Josh Blum <josh@joshknows.com> | 2010-12-16 00:07:19 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-12-16 00:07:19 -0800 |
commit | 28194df43e34b8f5c89d7a3f0fdea0be3a15b7b2 (patch) | |
tree | ed0a45655371281d2ef9da6581e4ef4d19157e35 /host/lib/usrp/usrp2/usrp2_impl.hpp | |
parent | fa7d4a2a15cf332085b218373e7746604285bf2c (diff) | |
download | uhd-28194df43e34b8f5c89d7a3f0fdea0be3a15b7b2.tar.gz uhd-28194df43e34b8f5c89d7a3f0fdea0be3a15b7b2.tar.bz2 uhd-28194df43e34b8f5c89d7a3f0fdea0be3a15b7b2.zip |
usrp2: brought err0 transports into device and mboard constructors
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_impl.hpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_impl.hpp b/host/lib/usrp/usrp2/usrp2_impl.hpp index 16a7a0a7c..be97e1121 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.hpp +++ b/host/lib/usrp/usrp2/usrp2_impl.hpp @@ -85,6 +85,7 @@ public: size_t index, uhd::transport::udp_simple::sptr, uhd::transport::zero_copy_if::sptr, + uhd::transport::zero_copy_if::sptr, const uhd::device_addr_t &device_args, size_t recv_samps_per_packet ); @@ -185,11 +186,13 @@ 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 + * \param err0_transports the udp transports for error + * \param device_args optional misc device parameters */ 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> err0_transports, const uhd::device_addrs_t &device_args ); @@ -221,6 +224,7 @@ private: //io impl methods and members std::vector<uhd::transport::zero_copy_if::sptr> _data_transports; + std::vector<uhd::transport::zero_copy_if::sptr> _err0_transports; uhd::otw_type_t _rx_otw_type, _tx_otw_type; UHD_PIMPL_DECL(io_impl) _io_impl; void io_init(void); |