aboutsummaryrefslogtreecommitdiffstats
path: root/usrp_uhd/include/usrp_uhd.hpp
blob: 6bf97a5a4fefeba226e6b17db80c8ccbb777d3d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// Copyright 2010 Ettus Research LLC
//

#ifndef INCLUDED_USRP_UHD_HPP
#define INCLUDED_USRP_UHD_HPP

#include <usrp_uhd/usrp_addr.hpp>
#include <usrp_uhd/wax.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/function.hpp>
#include <vector>
#include <sys/uio.h>

namespace usrp{

    class uhd{

    public:
        typedef boost::shared_ptr<uhd> sptr;
        typedef boost::function<bool(void *data, size_t len)> recv_hdlr_t;
        uhd(usrp_addr_t usrp_addr);
        ~uhd(void);

        //the io interface
        void send(const std::vector<iovec> &iovs);
        void send(void* data, size_t len); //wrapper
        void recv(const recv_hdlr_t &recv_hdlr);
        void recv(void* &data, size_t &len); //wrapper

        //connect dsps and subdevs
        void connect(const wax::type &src, const wax::type &sink);

        //the properties interface
        wax::proxy props(void);

    private:
        wax::type d_mboard;
    };

} //namespace usrp

#endif /* INCLUDED_USRP_UHD_HPP */