diff options
author | Josh Blum <josh@joshknows.com> | 2010-10-08 17:41:19 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-10-11 10:12:14 -0700 |
commit | 369c0e1dbc1518bd0fe2f81bec5e197d0c3bfe41 (patch) | |
tree | 8a03178d050c2675aef4e076516a7c260d96d84b /host/lib/usrp/usrp2/usrp2_impl.hpp | |
parent | 445a5ca2c7d822ea576eab6aca51cf340df1ca15 (diff) | |
download | uhd-369c0e1dbc1518bd0fe2f81bec5e197d0c3bfe41.tar.gz uhd-369c0e1dbc1518bd0fe2f81bec5e197d0c3bfe41.tar.bz2 uhd-369c0e1dbc1518bd0fe2f81bec5e197d0c3bfe41.zip |
usrp2: implement fc seq number on tx header packing
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_impl.hpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_impl.hpp b/host/lib/usrp/usrp2/usrp2_impl.hpp index 558726a2b..6d35e925d 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.hpp +++ b/host/lib/usrp/usrp2/usrp2_impl.hpp @@ -33,7 +33,7 @@ #include <boost/function.hpp> #include <uhd/transport/vrt_if_packet.hpp> #include <uhd/transport/udp_simple.hpp> //mtu -#include <uhd/transport/udp_zero_copy.hpp> +#include <uhd/transport/zero_copy.hpp> #include <uhd/usrp/dboard_manager.hpp> #include <uhd/usrp/subdev_spec.hpp> @@ -178,7 +178,7 @@ public: */ usrp2_impl( std::vector<uhd::transport::udp_simple::sptr> ctrl_transports, - std::vector<uhd::transport::udp_zero_copy::sptr> data_transports + std::vector<uhd::transport::zero_copy_if::sptr> data_transports ); ~usrp2_impl(void); @@ -208,7 +208,7 @@ private: uhd::dict<std::string, usrp2_mboard_impl::sptr> _mboard_dict; //io impl methods and members - std::vector<uhd::transport::udp_zero_copy::sptr> _data_transports; + std::vector<uhd::transport::zero_copy_if::sptr> _data_transports; uhd::otw_type_t _rx_otw_type, _tx_otw_type; UHD_PIMPL_DECL(io_impl) _io_impl; void io_init(void); |