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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
/* -*- c++ -*- */
/*
* Copyright 2008 Free Software Foundation, Inc.
*
* 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/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <usrp2/usrp2.h>
#include "usrp2_impl.h"
#include <vector>
#include <boost/thread.hpp>
#include <boost/weak_ptr.hpp>
#include <string>
#include <stdexcept>
namespace usrp2 {
// --- Table of weak pointers to usrps we know about ---
// (Could be cleaned up and turned into a template)
struct usrp_table_entry {
// inteface + normalized mac addr ("eth0:01:23:45:67:89:ab")
std::string key;
boost::weak_ptr<usrp2::usrp2> value;
usrp_table_entry(const std::string &_key, boost::weak_ptr<usrp2::usrp2> _value)
: key(_key), value(_value) {}
};
typedef std::vector<usrp_table_entry> usrp_table;
static boost::mutex s_table_mutex;
static usrp_table s_table;
usrp2::sptr
usrp2::find_existing_or_make_new(const std::string &ifc, props *pr)
{
std::string key = ifc + ":" + pr->addr;
boost::mutex::scoped_lock guard(s_table_mutex);
for (usrp_table::iterator p = s_table.begin(); p != s_table.end();){
if (p->value.expired()) // weak pointer is now dead
p = s_table.erase(p); // erase it
else {
if (key == p->key) // found it
return usrp2::sptr(p->value);
else
++p; // keep looking
}
}
// We don't have the USRP2 we're looking for
// create a new one and stick it in the table.
usrp2::sptr r(new usrp2::usrp2(ifc, pr));
usrp_table_entry t(key, r);
s_table.push_back(t);
return r;
}
// --- end of table code ---
static bool
parse_mac_addr(const std::string &s, std::string &ns)
{
u2_mac_addr_t p;
p.addr[0] = 0x00; // Matt's IAB
p.addr[1] = 0x50;
p.addr[2] = 0xC2;
p.addr[3] = 0x85;
p.addr[4] = 0x30;
p.addr[5] = 0x00;
int len = s.size();
switch (len) {
case 5:
if (sscanf(s.c_str(), "%hhx:%hhx", &p.addr[4], &p.addr[5]) != 2)
return false;
break;
case 17:
if (sscanf(s.c_str(), "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",
&p.addr[0], &p.addr[1], &p.addr[2],
&p.addr[3], &p.addr[4], &p.addr[5]) != 6)
return false;
break;
default:
return false;
}
char buf[128];
snprintf(buf, sizeof(buf),
"%02x:%02x:%02x:%02x:%02x:%02x",
p.addr[0],p.addr[1],p.addr[2],
p.addr[3],p.addr[4],p.addr[5]);
ns = std::string(buf);
return true;
}
usrp2::sptr
usrp2::make(const std::string &ifc, const std::string &addr)
{
std::string naddr = "";
if (addr != "" && !parse_mac_addr(addr, naddr))
throw std::runtime_error("Invalid MAC address");
props_vector_t u2s = find(ifc, naddr);
int n = u2s.size();
if (n == 0) {
if (addr == "")
throw std::runtime_error("No USRPs found on interface " + ifc);
else
throw std::runtime_error("No USRP found with addr " + addr + " on interface " + ifc);
}
if (n > 1)
throw std::runtime_error("Multiple USRPs found on interface; must select by MAC address.");
return find_existing_or_make_new(ifc, &u2s[0]);
}
// Private constructor. Sole function is to create an impl.
usrp2::usrp2(const std::string &ifc, props *p)
: d_impl(new usrp2::impl(ifc, p))
{
// NOP
}
// Public class destructor. d_impl will auto-delete.
usrp2::~usrp2()
{
// NOP
}
std::string
usrp2::mac_addr()
{
return d_impl->mac_addr();
}
// Receive
bool
usrp2::set_rx_gain(double gain)
{
return d_impl->set_rx_gain(gain);
}
double
usrp2::rx_gain_min()
{
return d_impl->rx_gain_min();
}
double
usrp2::rx_gain_max()
{
return d_impl->rx_gain_max();
}
double
usrp2::rx_gain_db_per_step()
{
return d_impl->rx_gain_db_per_step();
}
bool
usrp2::set_rx_center_freq(double frequency, tune_result *result)
{
return d_impl->set_rx_center_freq(frequency, result);
}
double
usrp2::rx_freq_min()
{
return d_impl->rx_freq_min();
}
double
usrp2::rx_freq_max()
{
return d_impl->rx_freq_max();
}
bool
usrp2::set_rx_decim(int decimation_factor)
{
return d_impl->set_rx_decim(decimation_factor);
}
int
usrp2::rx_decim()
{
return d_impl->rx_decim();
}
bool
usrp2::set_rx_scale_iq(int scale_i, int scale_q)
{
return d_impl->set_rx_scale_iq(scale_i, scale_q);
}
bool
usrp2::start_rx_streaming(unsigned int channel, unsigned int items_per_frame)
{
return d_impl->start_rx_streaming(channel, items_per_frame);
}
bool
usrp2::rx_samples(unsigned int channel, rx_sample_handler *handler)
{
return d_impl->rx_samples(channel, handler);
}
bool
usrp2::stop_rx_streaming(unsigned int channel)
{
return d_impl->stop_rx_streaming(channel);
}
unsigned int
usrp2::rx_overruns()
{
return d_impl->rx_overruns();
}
unsigned int
usrp2::rx_missing()
{
return d_impl->rx_missing();
}
// Transmit
bool
usrp2::set_tx_gain(double gain)
{
return d_impl->set_tx_gain(gain);
}
double
usrp2::tx_gain_min()
{
return d_impl->tx_gain_min();
}
double
usrp2::tx_gain_max()
{
return d_impl->tx_gain_max();
}
double
usrp2::tx_gain_db_per_step()
{
return d_impl->tx_gain_db_per_step();
}
bool
usrp2::set_tx_center_freq(double frequency, tune_result *result)
{
return d_impl->set_tx_center_freq(frequency, result);
}
double
usrp2::tx_freq_min()
{
return d_impl->tx_freq_min();
}
double
usrp2::tx_freq_max()
{
return d_impl->tx_freq_max();
}
bool
usrp2::set_tx_interp(int interpolation_factor)
{
return d_impl->set_tx_interp(interpolation_factor);
}
int
usrp2::tx_interp()
{
return d_impl->tx_interp();
}
void
usrp2::default_tx_scale_iq(int interpolation_factor, int *scale_i, int *scale_q)
{
d_impl->default_tx_scale_iq(interpolation_factor, scale_i, scale_q);
}
bool
usrp2::set_tx_scale_iq(int scale_i, int scale_q)
{
return d_impl->set_tx_scale_iq(scale_i, scale_q);
}
bool
usrp2::tx_32fc(unsigned int channel,
const std::complex<float> *samples,
size_t nsamples,
const tx_metadata *metadata)
{
return d_impl->tx_32fc(channel, samples, nsamples, metadata);
}
bool
usrp2::tx_16sc(unsigned int channel,
const std::complex<int16_t> *samples,
size_t nsamples,
const tx_metadata *metadata)
{
return d_impl->tx_16sc(channel, samples, nsamples, metadata);
}
bool
usrp2::tx_raw(unsigned int channel,
const uint32_t *items,
size_t nitems,
const tx_metadata *metadata)
{
return d_impl->tx_raw(channel, items, nitems, metadata);
}
// miscellaneous methods
bool
usrp2::config_mimo(int flags)
{
return d_impl->config_mimo(flags);
}
bool
usrp2::fpga_master_clock_freq(long *freq)
{
return d_impl->fpga_master_clock_freq(freq);
}
bool
usrp2::adc_rate(long *rate)
{
return d_impl->adc_rate(rate);
}
bool
usrp2::dac_rate(long *rate)
{
return d_impl->dac_rate(rate);
}
bool
usrp2::tx_daughterboard_id(int *dbid)
{
return d_impl->tx_daughterboard_id(dbid);
}
bool
usrp2::rx_daughterboard_id(int *dbid)
{
return d_impl->rx_daughterboard_id(dbid);
}
// low level methods
bool
usrp2::burn_mac_addr(const std::string &new_addr)
{
return d_impl->burn_mac_addr(new_addr);
}
bool
usrp2::sync_to_pps()
{
return d_impl->sync_to_pps();
}
std::vector<uint32_t>
usrp2::peek32(uint32_t addr, uint32_t words)
{
return d_impl->peek32(addr, words);
}
bool
usrp2::poke32(uint32_t addr, const std::vector<uint32_t> &data)
{
return d_impl->poke32(addr, data);
}
} // namespace usrp2
std::ostream& operator<<(std::ostream &os, const usrp2::props &x)
{
os << x.addr;
char buf[128];
snprintf(buf, sizeof(buf)," hw_rev = 0x%04x", x.hw_rev);
os << buf;
return os;
}
|