diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-25 17:44:12 +0000 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-25 17:44:12 +0000 |
commit | c95a158548e93d1ea37061e0b937e78ab0486b57 (patch) | |
tree | 50531279c454f3b2d07e52dd8eb2562b7fabbbc7 /host/lib/usrp/usrp2/usrp2_impl.hpp | |
parent | 3cd7bc9be6420623eb7803e490b39ecc75d83ed9 (diff) | |
parent | 5715b2c4937ca094ca8f1d9d9b55c4edcc959981 (diff) | |
download | uhd-c95a158548e93d1ea37061e0b937e78ab0486b57.tar.gz uhd-c95a158548e93d1ea37061e0b937e78ab0486b57.tar.bz2 uhd-c95a158548e93d1ea37061e0b937e78ab0486b57.zip |
Merge branch 'master' into u1e_uhd
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_impl.hpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.hpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_impl.hpp b/host/lib/usrp/usrp2/usrp2_impl.hpp index 2545efd58..9a4c42d42 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.hpp +++ b/host/lib/usrp/usrp2/usrp2_impl.hpp @@ -98,10 +98,15 @@ public: double get_master_clock_freq(void); //the io interface - void send_raw(const std::vector<boost::asio::const_buffer> &); - uhd::shared_iovec recv_raw(void); + size_t send(const boost::asio::const_buffer &, const uhd::metadata_t &, const std::string &); + size_t recv(const boost::asio::mutable_buffer &, uhd::metadata_t &, const std::string &); private: + //the raw io interface (samples are in the usrp2 native format) + size_t send_raw(const boost::asio::const_buffer &, const uhd::metadata_t &); + size_t recv_raw(const boost::asio::mutable_buffer &, uhd::metadata_t &); + uhd::dict<uint32_t, size_t> _stream_id_to_packet_seq; + //udp transports for control and data uhd::transport::udp::sptr _ctrl_transport; uhd::transport::udp::sptr _data_transport; |