-
Notifications
You must be signed in to change notification settings - Fork 5
/
iris_device.hpp
374 lines (240 loc) · 13.3 KB
/
iris_device.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
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
// Copyright (c) 2017 Skylark Wireless LLC
// SPDX-License-Identifier: BSD-3-Clause
//-------------------------------------------------------------
//-- Class definition for SoapyIrisLocal device instance
//-------------------------------------------------------------
#pragma once
#include <SoapySDR/Device.hpp>
#include <SoapySDR/Time.hpp>
class SoapyIrisLocal : public SoapySDR::Device
{
public:
SoapyIrisLocal(const SoapySDR::Kwargs &args);
~SoapyIrisLocal(void);
/*******************************************************************
* Identification API
******************************************************************/
std::string getDriverKey(void) const;
std::string getHardwareKey(void) const;
SoapySDR::Kwargs getHardwareInfo(void) const;
/*******************************************************************
* Channels API
******************************************************************/
void setFrontendMapping(const int direction, const std::string &mapping);
std::string getFrontendMapping(const int direction) const;
size_t getNumChannels(const int direction) const;
SoapySDR::Kwargs getChannelInfo(const int direction, const size_t channel) const;
bool getFullDuplex(const int direction, const size_t channel) const;
/*******************************************************************
* 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,
const SoapySDR::Kwargs &args);
void closeStream(SoapySDR::Stream *stream);
size_t getStreamMTU(SoapySDR::Stream *stream) const;
int activateStream(
SoapySDR::Stream *stream,
const int flags,
const long long timeNs,
const size_t numElems);
int deactivateStream(
SoapySDR::Stream *stream,
const int flags,
const long long timeNs);
int readStream(
SoapySDR::Stream *stream,
void * const *buffs,
const size_t numElems,
int &flags,
long long &timeNs,
const long timeoutUs);
int writeStream(
SoapySDR::Stream *stream,
const void * const *buffs,
const size_t numElems,
int &flags,
const long long timeNs,
const long timeoutUs);
int readStreamStatus(
SoapySDR::Stream *stream,
size_t &chanMask,
int &flags,
long long &timeNs,
const long timeoutUs);
size_t getNumDirectAccessBuffers(SoapySDR::Stream *stream);
int getDirectAccessBufferAddrs(SoapySDR::Stream *stream, const size_t handle, void **buffs);
int acquireReadBuffer(
SoapySDR::Stream *stream,
size_t &handle,
const void **buffs,
int &flags,
long long &timeNs,
const long timeoutUs);
void releaseReadBuffer(
SoapySDR::Stream *stream,
const size_t handle);
int acquireWriteBuffer(
SoapySDR::Stream *stream,
size_t &handle,
void **buffs,
const long timeoutUs);
void releaseWriteBuffer(
SoapySDR::Stream *stream,
const size_t handle,
const size_t numElems,
int &flags,
const long long timeNs);
/*******************************************************************
* 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;
/*******************************************************************
* Frontend corrections API
******************************************************************/
bool hasDCOffsetMode(const int direction, const size_t channel) const;
void setDCOffsetMode(const int direction, const size_t channel, const bool automatic);
bool getDCOffsetMode(const int direction, const size_t channel) const;
bool hasDCOffset(const int direction, const size_t channel) const;
void setDCOffset(const int direction, const size_t channel, const std::complex<double> &offset);
std::complex<double> getDCOffset(const int direction, const size_t channel) const;
bool hasIQBalance(const int direction, const size_t channel) const;
void setIQBalance(const int direction, const size_t channel, const std::complex<double> &balance);
std::complex<double> getIQBalance(const int direction, const size_t channel) const;
bool hasFrequencyCorrection(const int direction, const size_t channel) const;
void setFrequencyCorrection(const int direction, const size_t channel, const double value);
double getFrequencyCorrection(const int direction, const size_t channel) const;
/*******************************************************************
* Gain API
******************************************************************/
std::vector<std::string> listGains(const int direction, const size_t channel) const;
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;
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;
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;
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 double frequency, const SoapySDR::Kwargs &args);
void setFrequency(const int direction, const size_t channel, const std::string &name, const double frequency, const SoapySDR::Kwargs &args);
double getFrequency(const int direction, const size_t channel) const;
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;
SoapySDR::RangeList getFrequencyRange(const int direction, const size_t channel, const std::string &name) const;
SoapySDR::ArgInfoList getFrequencyArgsInfo(const int direction, const size_t channel) 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;
SoapySDR::RangeList getSampleRateRange(const int direction, const size_t channel) const;
/*******************************************************************
* Bandwidth API
******************************************************************/
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;
SoapySDR::RangeList getBandwidthRange(const int direction, const size_t channel) const;
/*******************************************************************
* Clocking API
******************************************************************/
void setMasterClockRate(const double rate);
double getMasterClockRate(void) const;
SoapySDR::RangeList getMasterClockRates(void) const;
std::vector<std::string> listClockSources(void) const;
void setClockSource(const std::string &source);
std::string getClockSource(void) const;
/*******************************************************************
* Time API
******************************************************************/
std::vector<std::string> listTimeSources(void) const;
void setTimeSource(const std::string &source);
std::string getTimeSource(void) const;
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);
void setCommandTime(const long long timeNs, const std::string &what);
long long ticksToTimeNs(const long long ticks, const double rate) const
{
if (rate == 0.0) return 0;
return SoapySDR::ticksToTimeNs(ticks, rate);
}
long long timeNsToTicks(const long long timeNs, const double rate) const
{
if (rate == 0.0) return 0;
return SoapySDR::timeNsToTicks(timeNs, rate);
}
/*******************************************************************
* Sensor API
******************************************************************/
std::vector<std::string> listSensors(void) const;
SoapySDR::ArgInfo getSensorInfo(const std::string &name) const;
std::string readSensor(const std::string &name) const;
std::vector<std::string> listSensors(const int direction, const size_t channel) const;
SoapySDR::ArgInfo getSensorInfo(const int direction, const size_t channel, const std::string &name) const;
std::string readSensor(const int direction, const size_t channel, const std::string &name) const;
/*******************************************************************
* Register API
******************************************************************/
std::vector<std::string> listRegisterInterfaces(void) const;
void writeRegister(const std::string &name, const unsigned addr, const unsigned value);
unsigned readRegister(const std::string &name, const unsigned addr) const;
void writeRegister(const unsigned addr, const unsigned value);
unsigned readRegister(const unsigned addr) const;
void writeRegisters(const std::string &name, const unsigned addr, const std::vector<unsigned> &value);
std::vector<unsigned> readRegisters(const std::string &name, const unsigned addr, const size_t length) 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;
SoapySDR::ArgInfoList getSettingInfo(const int direction, const size_t channel) const;
void writeSetting(const int direction, const size_t channel, const std::string &key, const std::string &value);
std::string readSetting(const int direction, const size_t channel, 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;
/*******************************************************************
* I2C API
******************************************************************/
void writeI2C(const int addr, const std::string &data);
std::string readI2C(const int addr, const size_t numBytes);
/*******************************************************************
* SPI API
******************************************************************/
unsigned transactSPI(const int addr, const unsigned data, const size_t numBits);
/*******************************************************************
* UART API
******************************************************************/
std::vector<std::string> listUARTs(void) const;
void writeUART(const std::string &which, const std::string &data);
std::string readUART(const std::string &which, const long timeoutUs) const;
private:
std::string _remoteURL;
SoapySDR::Device *_remote;
double _adcClockRate;
double _dacClockRate;
bool _tddMode;
};