blob: 788b8a6eb5f75805f5aec0eb5d3da811d0b73b2b (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
//
// Copyright 2010 Ettus Research LLC
//
#ifndef INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_HPP
#define INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_HPP
#include <vector>
#include <usrp_uhd/wax.hpp>
#include <boost/utility.hpp>
#include <boost/function.hpp>
#include <boost/shared_ptr.hpp>
#include <usrp_uhd/usrp/dboard/base.hpp>
namespace usrp_uhd{ namespace usrp{ namespace dboard{
/*!
* A daughter board subdev manager class.
* Create subdev instances for each subdev on a dboard.
* Provide wax::obj access to the subdevs inside.
*/
class manager : boost::noncopyable{
public:
//a dboard can be identified by a 16 bit integer
typedef uint16_t dboard_id_t;
//dboard constructor (each dboard should have a ::make with this signature)
typedef boost::function<xcvr_base::sptr(xcvr_base::ctor_args_t)> dboard_ctor_t;
/*!
* Register rx subdevices for a given dboard id.
*
* \param dboard_id the rx dboard id
* \param dboard_ctor the dboard constructor function pointer
* \param num_subdevs the number of rx subdevs in this dboard
*/
static void register_rx_subdev(
dboard_id_t dboard_id,
dboard_ctor_t dboard_ctor,
size_t num_subdevs
);
/*!
* Register tx subdevices for a given dboard id.
*
* \param dboard_id the tx dboard id
* \param dboard_ctor the dboard constructor function pointer
* \param num_subdevs the number of tx subdevs in this dboard
*/
static void register_tx_subdev(
dboard_id_t dboard_id,
dboard_ctor_t dboard_ctor,
size_t num_subdevs
);
public:
typedef boost::shared_ptr<manager> sptr;
//structors
manager(
dboard_id_t rx_dboard_id,
dboard_id_t tx_dboard_id,
interface::sptr dboard_interface
);
~manager(void);
//interface
size_t get_num_rx_subdevs(void);
size_t get_num_tx_subdevs(void);
wax::obj::sptr get_rx_subdev(size_t subdev_index);
wax::obj::sptr get_tx_subdev(size_t subdev_index);
private:
//list of rx and tx dboards in this manager
//each dboard here is actually a subdevice
std::vector<xcvr_base::sptr> _rx_dboards;
std::vector<xcvr_base::sptr> _tx_dboards;
};
}}} //namespace
#endif /* INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_HPP */
|