forked from pothosware/SoapyBladeRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bladeRF_SoapySDR.hpp
339 lines (254 loc) · 11.4 KB
/
bladeRF_SoapySDR.hpp
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
/*
* This file is part of the bladeRF project:
* http://www.github.com/nuand/bladeRF
*
* Copyright (C) 2015-2016 Josh Blum
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
#include <SoapySDR/Device.hpp>
#include <SoapySDR/Time.hpp>
#include <libbladeRF.h>
#include <cstdio>
#include <queue>
/*!
* Storage for rx commands and tx responses
*/
struct StreamMetadata
{
int flags;
long long timeNs;
size_t numElems;
int code;
};
/*!
* The SoapySDR device interface for a blade RF.
* The overloaded virtual methods calls into the blade RF C API.
*/
class bladeRF_SoapySDR : public SoapySDR::Device
{
public:
//! initialize blade RF from device info
bladeRF_SoapySDR(const bladerf_devinfo &devinfo);
//! destructor shuts down and cleans up
~bladeRF_SoapySDR(void);
/*******************************************************************
* Identification API
******************************************************************/
std::string getDriverKey(void) const
{
return "bladeRF";
}
std::string getHardwareKey(void) const
{
return "bladeRF";
}
SoapySDR::Kwargs getHardwareInfo(void) const;
/*******************************************************************
* Channels API
******************************************************************/
size_t getNumChannels(const int) const
{
return 1;
}
bool getFullDuplex(const int, const size_t) const
{
return true;
}
/*******************************************************************
* Stream API
******************************************************************/
std::vector<std::string> getStreamFormats(const int direction, const size_t channel) const;
std::string getNativeStreamFormat(const int direction, const size_t channel, double &fullScale) const;
SoapySDR::ArgInfoList getStreamArgsInfo(const int direction, const size_t channel) const;
SoapySDR::Stream *setupStream(
const int direction,
const std::string &format,
const std::vector<size_t> &channels = std::vector<size_t>(),
const SoapySDR::Kwargs &args = SoapySDR::Kwargs());
void closeStream(SoapySDR::Stream *stream);
size_t getStreamMTU(SoapySDR::Stream *stream) const;
int activateStream(
SoapySDR::Stream *stream,
const int flags = 0,
const long long timeNs = 0,
const size_t numElems = 0);
int deactivateStream(
SoapySDR::Stream *stream,
const int flags = 0,
const long long timeNs = 0);
int readStream(
SoapySDR::Stream *stream,
void * const *buffs,
const size_t numElems,
int &flags,
long long &timeNs,
const long timeoutUs = 100000);
int writeStream(
SoapySDR::Stream *stream,
const void * const *buffs,
const size_t numElems,
int &flags,
const long long timeNs = 0,
const long timeoutUs = 100000);
int readStreamStatus(
SoapySDR::Stream *stream,
size_t &chanMask,
int &flags,
long long &timeNs,
const long timeoutUs
);
/*******************************************************************
* Antenna API
******************************************************************/
std::vector<std::string> listAntennas(const int direction, const size_t channel) const;
void setAntenna(const int direction, const size_t channel, const std::string &name);
std::string getAntenna(const int direction, const size_t channel) const;
/*******************************************************************
* Calibration API
******************************************************************/
bool hasDCOffset(const int direction, const size_t) const;
void setDCOffset(const int direction, const size_t, const std::complex<double> &offset);
std::complex<double> getDCOffset(const int direction, const size_t) const;
bool hasIQBalance(const int direction, const size_t) const;
void setIQBalance(const int direction, const size_t, const std::complex<double> &balance);
std::complex<double> getIQBalance(const int direction, const size_t) const;
/*******************************************************************
* Gain API
******************************************************************/
bool hasGainMode(const int direction, const size_t channel) const;
void setGainMode(const int direction, const size_t channel, const bool automatic);
bool getGainMode(const int direction, const size_t channel) const;
std::vector<std::string> listGains(const int direction, const size_t channel) const;
void setGain(const int direction, const size_t channel, const double value);
void setGain(const int direction, const size_t channel, const std::string &name, const double value);
double getGain(const int direction, const size_t channel, const std::string &name) const;
SoapySDR::Range getGainRange(const int direction, const size_t channel, const std::string &name) const;
/*******************************************************************
* Frequency API
******************************************************************/
void setFrequency(const int direction, const size_t channel, const std::string &name, const double frequency, const SoapySDR::Kwargs &args = SoapySDR::Kwargs());
double getFrequency(const int direction, const size_t channel, const std::string &name) const;
std::vector<std::string> listFrequencies(const int direction, const size_t channel) const;
SoapySDR::RangeList getFrequencyRange(const int direction, const size_t channel, const std::string &name) const;
/*******************************************************************
* Sample Rate API
******************************************************************/
void setSampleRate(const int direction, const size_t channel, const double rate);
double getSampleRate(const int direction, const size_t channel) const;
std::vector<double> listSampleRates(const int direction, const size_t channel) const;
void setBandwidth(const int direction, const size_t channel, const double bw);
double getBandwidth(const int direction, const size_t channel) const;
std::vector<double> listBandwidths(const int direction, const size_t channel) const;
/*******************************************************************
* Time API
******************************************************************/
bool hasHardwareTime(const std::string &what = "") const;
long long getHardwareTime(const std::string &what = "") const;
void setHardwareTime(const long long timeNs, const std::string &what = "");
/*******************************************************************
* Register API
******************************************************************/
void writeRegister(const unsigned addr, const unsigned value);
unsigned readRegister(const unsigned addr) const;
/*******************************************************************
* Settings API
******************************************************************/
SoapySDR::ArgInfoList getSettingInfo(void) const;
void writeSetting(const std::string &key, const std::string &value);
std::string readSetting(const std::string &key) const;
/*******************************************************************
* GPIO API
******************************************************************/
std::vector<std::string> listGPIOBanks(void) const;
void writeGPIO(const std::string &bank, const unsigned value);
void writeGPIO(const std::string &bank, const unsigned value, const unsigned mask);
unsigned readGPIO(const std::string &bank) const;
void writeGPIODir(const std::string &bank, const unsigned dir);
void writeGPIODir(const std::string &bank, const unsigned dir, const unsigned mask);
unsigned readGPIODir(const std::string &bank) const;
private:
static bladerf_module _dir2mod(const int direction)
{
return (direction == SOAPY_SDR_RX)?BLADERF_MODULE_RX:BLADERF_MODULE_TX;
}
static std::string _err2str(const int err)
{
const char *msg = NULL;
switch (err)
{
case BLADERF_ERR_UNEXPECTED: msg = "An unexpected failure occurred"; break;
case BLADERF_ERR_RANGE: msg = "Provided parameter is out of range"; break;
case BLADERF_ERR_INVAL: msg = "Invalid operation/parameter"; break;
case BLADERF_ERR_MEM: msg = "Memory allocation error"; break;
case BLADERF_ERR_IO: msg = "File/Device I/O error"; break;
case BLADERF_ERR_TIMEOUT: msg = "Operation timed out"; break;
case BLADERF_ERR_NODEV: msg = "No device(s) available"; break;
case BLADERF_ERR_UNSUPPORTED: msg = "Operation not supported"; break;
case BLADERF_ERR_MISALIGNED: msg = "Misaligned flash access"; break;
case BLADERF_ERR_CHECKSUM: msg = "Invalid checksum"; break;
case BLADERF_ERR_NO_FILE: msg = "File not found"; break;
case BLADERF_ERR_UPDATE_FPGA: msg = "An FPGA update is required"; break;
case BLADERF_ERR_UPDATE_FW: msg = "A firmware update is requied"; break;
case BLADERF_ERR_TIME_PAST: msg = "Requested timestamp is in the past"; break;
default: msg = "Unknown error code"; break;
}
char buff[256];
sprintf(buff, "%d - %s", err, msg);
return buff;
}
long long _rxTicksToTimeNs(const long long ticks) const
{
return SoapySDR::ticksToTimeNs(ticks, _rxSampRate) + _timeNsOffset;
}
long long _timeNsToRxTicks(const long long timeNs) const
{
return SoapySDR::timeNsToTicks(timeNs-_timeNsOffset, _rxSampRate);
}
long long _txTicksToTimeNs(const long long ticks) const
{
return SoapySDR::ticksToTimeNs(ticks, _txSampRate) + _timeNsOffset;
}
long long _timeNsToTxTicks(const long long timeNs) const
{
return SoapySDR::timeNsToTicks(timeNs-_timeNsOffset, _txSampRate);
}
void updateRxMinTimeoutMs(void)
{
//the 2x factor allows padding so we aren't on the fence
_rxMinTimeoutMs = long((2*1000*_rxBuffSize)/_rxSampRate);
}
double _rxSampRate;
double _txSampRate;
bool _inTxBurst;
bool _rxFloats;
bool _txFloats;
bool _rxOverflow;
long long _rxNextTicks;
long long _txNextTicks;
long long _timeNsOffset;
int16_t *_rxConvBuff;
int16_t *_txConvBuff;
size_t _rxBuffSize;
size_t _txBuffSize;
long _rxMinTimeoutMs;
std::queue<StreamMetadata> _rxCmds;
std::queue<StreamMetadata> _txResps;
std::string _xb200Mode;
std::string _samplingMode;
std::string _loopbackMode;
bladerf *_dev;
};