-
Notifications
You must be signed in to change notification settings - Fork 2
/
SoapyRX888.hpp
232 lines (154 loc) · 7.46 KB
/
SoapyRX888.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
#pragma once
#include <SoapySDR/Device.hpp>
#include <SoapySDR/Logger.h>
#include <SoapySDR/Types.h>
//#include <cstdint>
#include <librx888.h>
#include <stdexcept>
#include <thread>
#include <mutex>
#include <condition_variable>
#include <atomic>
typedef enum rx888RXFormat
{
RX888_RX_FORMAT_FLOAT32, RX888_RX_FORMAT_INT16
} rx888RXFormat;
#define DEFAULT_BUFFER_LENGTH (1024 * 16 * 8)
#define DEFAULT_NUM_BUFFERS 16
#define BYTES_PER_SAMPLE 2
class SoapyRX888: public SoapySDR::Device
{
public:
explicit SoapyRX888(const SoapySDR::Kwargs &args);
~SoapyRX888(void);
/*******************************************************************
* Identification API
******************************************************************/
std::string getDriverKey(void) const;
std::string getHardwareKey(void) const;
SoapySDR::Kwargs getHardwareInfo(void) const;
/*******************************************************************
* Channels API
******************************************************************/
size_t getNumChannels(const int) 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 =
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);
/*******************************************************************
* Direct buffer access API
******************************************************************/
size_t getNumDirectAccessBuffers(SoapySDR::Stream *stream);
int getDirectAccessBufferAddrs(
SoapySDR::Stream *stream,
const size_t handle,
void **buffs);
int acquireReadBuffer( //acquire a buffer for reading
SoapySDR::Stream *stream,
size_t &handle,
const void **buffs,
int &flags,
long long &timeNs,
const long timeoutUs = 100000);
void releaseReadBuffer( //release a buffer after reading
SoapySDR::Stream *stream,
const size_t handle);
/*******************************************************************
* 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;
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;
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;
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;
/*******************************************************************
* Time API
******************************************************************/
std::vector<std::string> listTimeSources(void) const;
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 = "");
private:
//device handle
int deviceId;
rx888_dev_t *dev;
//cached settings
uint8_t rfGain;
rx888RXFormat rxFormat;
uint32_t sampleRate;
size_t numBuffers, bufferLength, asyncBuffs;
std::atomic<long long> ticks;
public:
struct Buffer
{
unsigned long long tick;
std::vector<signed char> data;
};
//async api usage
std::thread _rx_async_thread;
void rx_async_operation(void);
void rx_callback(unsigned char *buf, uint32_t len);
std::mutex _buf_mutex;
std::condition_variable _buf_cond;
std::vector<Buffer> _buffs;
size_t _buf_head;
size_t _buf_tail;
std::atomic<size_t> _buf_count;
signed char *_currentBuff;
std::atomic<bool> _overflowEvent;
size_t _currentHandle;
size_t bufferedElems;
long long bufTicks;
std::atomic<bool> resetBuffer;
};