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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
//
// Copyright 2010 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#include <uhd/usrp/usrp1e.hpp>
#include <uhd/usrp/dboard_manager.hpp>
#ifndef INCLUDED_USRP1E_IMPL_HPP
#define INCLUDED_USRP1E_IMPL_HPP
class usrp1e_impl; // dummy class declaration
/*!
* Make a usrp1e dboard interface.
* \param impl a pointer to the usrp1e impl object
* \return a sptr to a new dboard interface
*/
uhd::usrp::dboard_interface::sptr make_usrp1e_dboard_interface(usrp1e_impl *impl);
/*!
* Simple wax obj proxy class:
* Provides a wax obj interface for a set and a get function.
* This allows us to create nested properties structures
* while maintaining flattened code within the implementation.
*/
class wax_obj_proxy : public wax::obj{
public:
typedef boost::function<void(const wax::obj &, wax::obj &)> get_t;
typedef boost::function<void(const wax::obj &, const wax::obj &)> set_t;
wax_obj_proxy(void){
/* NOP */
}
wax_obj_proxy(const get_t &get, const set_t &set){
_get = get;
_set = set;
};
~wax_obj_proxy(void){
/* NOP */
}
void get(const wax::obj &key, wax::obj &val){
return _get(key, val);
}
void set(const wax::obj &key, const wax::obj &val){
return _set(key, val);
}
private:
get_t _get;
set_t _set;
};
/*!
* USRP1E implementation guts:
* The implementation details are encapsulated here.
* Handles properties on the mboard, dboard, dsps...
*/
class usrp1e_impl : public uhd::device{
public:
typedef boost::shared_ptr<usrp1e_impl> sptr;
usrp1e_impl(void);
~usrp1e_impl(void);
private:
//device functions and settings
void get(const wax::obj &, wax::obj &);
void set(const wax::obj &, const wax::obj &);
//mboard functions and settings
void mboard_init(void);
void mboard_get(const wax::obj &, wax::obj &);
void mboard_set(const wax::obj &, const wax::obj &);
wax_obj_proxy _mboard_proxy;
//xx dboard functions and settings
void dboard_init(void);
uhd::usrp::dboard_manager::sptr _dboard_manager;
//rx dboard functions and settings
void rx_dboard_get(const wax::obj &, wax::obj &);
void rx_dboard_set(const wax::obj &, const wax::obj &);
wax_obj_proxy _rx_dboard_proxy;
//tx dboard functions and settings
void tx_dboard_get(const wax::obj &, wax::obj &);
void tx_dboard_set(const wax::obj &, const wax::obj &);
wax_obj_proxy _tx_dboard_proxy;
//rx ddc functions and settings
void rx_ddc_init(void);
void rx_ddc_get(const wax::obj &, wax::obj &);
void rx_ddc_set(const wax::obj &, const wax::obj &);
wax_obj_proxy _rx_ddc_proxy;
//tx duc functions and settings
void tx_duc_init(void);
void tx_duc_get(const wax::obj &, wax::obj &);
void tx_duc_set(const wax::obj &, const wax::obj &);
wax_obj_proxy _tx_duc_proxy;
};
#endif /* INCLUDED_USRP1E_IMPL_HPP */
|