-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSettings.cpp
More file actions
588 lines (543 loc) · 18.1 KB
/
Settings.cpp
File metadata and controls
588 lines (543 loc) · 18.1 KB
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
//==============================================================================
// SDR plugin wrapper for Fobos SDR API
// V.T.
// LGPL-2.1 or above LICENSE
// 05.06.2024
// 10.11.2025 - open by index support
// 15.01.2026 - open by serial, specify clock_source by @oleksandrchumakovpaysera
//==============================================================================
#include "SoapyFobosSDR.hpp"
#include <SoapySDR/Time.hpp>
#include <algorithm>
#include <cstring>
SoapyFobosSDR::SoapyFobosSDR(const SoapySDR::Kwargs &args):
_device_index(0),
_dev(nullptr),
_sample_rate(25000000.0),
_center_frequency(100000000.0),
_direct_sampling(0),
_clock_source(0),
_lna_gain(0),
_lna_gain_scale(1.0 / 16.0),
_vga_gain(0),
_vga_gain_scale(1.0 / 2.0),
_rx_bufs(0),
_rx_buffs_count(DEFAULT_BUFS_COUNT),
_rx_buff_len(DEFAULT_BUFF_LEN),
_rx_filled(0)
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s()\n", __CLASS__, __FUNCTION__);
#endif
_lna_gain_scale = 1.0 / 16.0;
_vga_gain_scale = 1.0 / 2.0;
int result = 0;
fobos_rx_get_api_info(lib_version, drv_version);
printf("API Info lib: %s drv: %s\n", lib_version, drv_version);
if (args.count("label") != 0)
{
SoapySDR_logf(SOAPY_SDR_INFO, "Opening %s...", args.at("label").c_str());
}
if (args.count("serial") != 0)
{
// Find device by serial number
char serials[256] = {0};
int count = fobos_rx_list_devices(serials);
if (count > 0)
{
char serials_copy[256];
strncpy(serials_copy, serials, sizeof(serials_copy) - 1);
serials_copy[sizeof(serials_copy) - 1] = '\0';
char* pserial = strtok(serials_copy, " ");
int found_index = -1;
// Search for device with specified serial number
for (int idx = 0; idx < count; idx++)
{
if (pserial && args.at("serial") == std::string(pserial))
{
found_index = idx;
SoapySDR_logf(SOAPY_SDR_INFO,
"Found device with serial '%s' at index %d",
pserial, idx);
break;
}
pserial = strtok(nullptr, " ");
}
if (found_index >= 0)
{
_device_index = found_index;
}
else
{
SoapySDR_logf(SOAPY_SDR_ERROR,
"Device with serial '%s' not found. Available devices: %s",
args.at("serial").c_str(), serials);
throw std::runtime_error("Device with specified serial not found");
}
}
else
{
throw std::runtime_error("No Fobos devices found");
}
}
else
{
// Use index if serial not specified
#ifdef SOAPY_FOBOS_PRINT_DEBUG
for (auto & arg : args)
{
printf("args[]: %s = %s\n", arg.first.c_str(), arg.second.c_str());
}
#endif
const auto it = args.find("index");
if (it != args.end())
{
_device_index = std::stoi(it->second);
}
}
SoapySDR_logf(SOAPY_SDR_DEBUG, "opening device #%d", _device_index);
result = fobos_rx_open(&_dev, _device_index);
if (result != 0)
{
throw std::runtime_error("Unable to open Fobos SDR device");
}
result = fobos_rx_get_board_info(_dev, hw_revision, fw_version, manufacturer, product, serial);
if (result != 0)
{
throw std::runtime_error("Unable to obtain devoce info");
}
}
SoapyFobosSDR::~SoapyFobosSDR(void)
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s()\n", __CLASS__, __FUNCTION__);
#endif
fobos_rx_close(_dev);
}
/*******************************************************************
* Identification API
******************************************************************/
std::string SoapyFobosSDR::getDriverKey(void) const
{
return "FobosSDR";
}
std::string SoapyFobosSDR::getHardwareKey(void) const
{
return std::string(hw_revision);
}
SoapySDR::Kwargs SoapyFobosSDR::getHardwareInfo(void) const
{
SoapySDR::Kwargs args;
args["lib_version"] = std::string(lib_version);
args["drv_version"] = std::string(drv_version);
args["hw_revision"] = std::string(hw_revision);
args["fw_version"] = std::string(fw_version);
args["manufacturer"] = std::string(manufacturer);
args["product"] = std::string(product);
args["serial"] = std::string(serial);
args["index"] = std::to_string(_device_index);
return args;
}
/*******************************************************************
* Channels API
******************************************************************/
size_t SoapyFobosSDR::getNumChannels(const int dir) const
{
return (dir == SOAPY_SDR_RX) ? 1 : 0;
}
bool SoapyFobosSDR::getFullDuplex(const int direction, const size_t channel) const
{
(void)direction;
(void)channel;
return false;
}
/*******************************************************************
* Antenna API
******************************************************************/
std::vector<std::string> SoapyFobosSDR::listAntennas(const int direction, const size_t channel) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d)\n", __CLASS__, __FUNCTION__, direction, (int)channel);
#endif
std::vector<std::string> antennas;
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
antennas.push_back("RX");
}
return antennas;
}
void SoapyFobosSDR::setAntenna(const int direction, const size_t channel, const std::string &name)
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d, %s)\n", __CLASS__, __FUNCTION__, direction, (int)channel, name.c_str());
#endif
if ((direction == SOAPY_SDR_RX) && (channel == 0) && (name == "RX"))
{
}
else
{
throw std::runtime_error("setAntena() not supported");
}
}
std::string SoapyFobosSDR::getAntenna(const int direction, const size_t channel) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d)\n", __CLASS__, __FUNCTION__, direction, (int)channel);
#endif
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
return "RX";
}
return "";
}
/*******************************************************************
* Frontend corrections API
******************************************************************/
bool SoapyFobosSDR::hasDCOffsetMode(const int direction, const size_t channel) const
{
(void)direction;
(void)channel;
return false;
}
bool SoapyFobosSDR::hasFrequencyCorrection(const int direction, const size_t channel) const
{
(void)direction;
(void)channel;
return false;
}
/*******************************************************************
* Gain API
******************************************************************/
std::vector<std::string> SoapyFobosSDR::listGains(const int direction, const size_t channel) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d)\n", __CLASS__, __FUNCTION__, direction, (int)channel);
#endif
std::vector<std::string> results;
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
results.push_back("LNA");
results.push_back("VGA");
}
return results;
}
bool SoapyFobosSDR::hasGainMode(const int direction, const size_t channel) const
{
(void)direction;
(void)channel;
return false;
}
void SoapyFobosSDR::setGain(const int direction, const size_t channel, const double value)
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d, %f)\n", __CLASS__, __FUNCTION__, direction, (int)channel, value);
#endif
//set the overall gain by distributing it across available gain elements
//OR delete this function to use SoapySDR's default gain distribution algorithm...
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
SoapySDR::Device::setGain(direction, channel, value);
}
}
void SoapyFobosSDR::setGain(const int direction, const size_t channel, const std::string &name, const double value)
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d, %s, %f)\n", __CLASS__, __FUNCTION__, direction, (int)channel, name.c_str(), value);
#endif
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
if (name == "LNA")
{
this->_lna_gain = value;
unsigned int idx = (round(value * _lna_gain_scale)) + 1;
fobos_rx_set_lna_gain(_dev, idx);
}
else if (name == "VGA")
{
this->_vga_gain = value;
unsigned int idx = uint8_t(round(value * _vga_gain_scale));
fobos_rx_set_vga_gain(_dev, idx);
}
}
}
double SoapyFobosSDR::getGain(const int direction, const size_t channel, const std::string &name) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d)\n", __CLASS__, __FUNCTION__, direction, (int)channel);
#endif
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
if (name == "LNA")
{
return this->_lna_gain;
}
if (name == "VGA")
{
return this->_vga_gain;
}
}
return 0.0;
}
SoapySDR::Range SoapyFobosSDR::getGainRange(const int direction, const size_t channel, const std::string &name) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d, %s)\n", __CLASS__, __FUNCTION__, direction, (int)channel, name.c_str());
#endif
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
if (name == "LNA")
{
return SoapySDR::Range(0.0, 33.0);
}
if (name == "VGA")
{
return SoapySDR::Range(0.0, 30.0);
}
}
return SoapySDR::Range(0, 0);
}
/******************************************************************************/
/******************************************************************************
* Frequency API
******************************************************************************/
/******************************************************************************/
void SoapyFobosSDR::setFrequency(
const int direction,
const size_t channel,
const std::string &name,
const double frequency,
const SoapySDR::Kwargs &args)
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d, %s, %f)\n", __CLASS__, __FUNCTION__, direction, (int)channel, name.c_str(), frequency);
#endif
(void)args;
double actual;
if ((direction == SOAPY_SDR_RX) && (channel == 0) && (name == "RF"))
{
SoapySDR_logf(SOAPY_SDR_DEBUG, "Setting center freq: %f", frequency);
int r = fobos_rx_set_frequency(_dev, frequency, &actual);
if (r != 0)
{
throw std::runtime_error("setFrequency failed");
}
_center_frequency = actual;
}
}
/******************************************************************************/
double SoapyFobosSDR::getFrequency(const int direction, const size_t channel, const std::string &name) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d, %s)\n", __CLASS__, __FUNCTION__, direction, (int)channel, name.c_str());
#endif
if ((direction == SOAPY_SDR_RX) && (channel == 0) && (name == "RF"))
{
return _center_frequency;
}
return 0.0;
}
/******************************************************************************/
std::vector<std::string> SoapyFobosSDR::listFrequencies(const int direction, const size_t channel) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d)\n", __CLASS__, __FUNCTION__, direction, (int)channel);
#endif
std::vector<std::string> names;
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
names.push_back("RF");
}
return names;
}
/******************************************************************************/
SoapySDR::RangeList SoapyFobosSDR::getFrequencyRange(
const int direction,
const size_t channel,
const std::string &name) const
{
SoapySDR::RangeList results;
if ((direction == SOAPY_SDR_RX) && (channel == 0) && (name == "RF"))
{
results.push_back(SoapySDR::Range(50E6, 6000E6));
}
return results;
}
/******************************************************************************/
SoapySDR::ArgInfoList SoapyFobosSDR::getFrequencyArgsInfo(const int direction, const size_t channel) const
{
SoapySDR::ArgInfoList freqArgs;
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
// TODO: frequency arguments
return freqArgs;
}
return freqArgs;
}
/*******************************************************************
* Sample Rate API
******************************************************************/
void SoapyFobosSDR::setSampleRate(const int direction, const size_t channel, const double rate)
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d, %f)\n", __CLASS__, __FUNCTION__, direction, (int)channel, rate);
#endif
SoapySDR_logf(SOAPY_SDR_DEBUG, "Setting sample rate: %f", rate);
double actual;
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
int r = fobos_rx_set_samplerate(_dev, rate, &actual);
if (r == 0)
{
_sample_rate = actual;
SoapySDR_logf(SOAPY_SDR_DEBUG, "actual: %f", actual);
}
else
{
SoapySDR_logf(SOAPY_SDR_DEBUG, "falied, err#: %d", r);
}
}
}
double SoapyFobosSDR::getSampleRate(const int direction, const size_t channel) const
{
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
return _sample_rate;
}
return 0.0;
}
std::vector<double> SoapyFobosSDR::listSampleRates(const int direction, const size_t channel) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d)\n", __CLASS__, __FUNCTION__, direction, (int)channel);
#endif
unsigned int count;
std::vector<double> rates;
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
int r = fobos_rx_get_samplerates(_dev, 0, &count);
if ((r == 0) && (count > 0))
{
rates.resize(count);
fobos_rx_get_samplerates(_dev, rates.data(), &count);
if (rates[0]>rates[count-1])
{
std::reverse(rates.begin(), rates.end());
}
}
}
return rates;
}
SoapySDR::RangeList SoapyFobosSDR::getSampleRateRange(const int direction, const size_t channel) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s(%d, %d)\n", __CLASS__, __FUNCTION__, direction, (int)channel);
#endif
SoapySDR::RangeList results;
if ((direction == SOAPY_SDR_RX) && (channel == 0))
{
std::vector<double> rates;
unsigned int count;
int r = fobos_rx_get_samplerates(_dev, 0, &count);
if ((r == 0) && (count > 0))
{
rates.resize(count);
fobos_rx_get_samplerates(_dev, rates.data(), &count);
if (rates[0] > rates[count - 1])
{
results.push_back(SoapySDR::Range(rates[count - 1], rates[0]));
}
else
{
results.push_back(SoapySDR::Range(rates[0], rates[count - 1]));
}
}
}
return results;
}
/*******************************************************************
* Settings API
******************************************************************/
SoapySDR::ArgInfoList SoapyFobosSDR::getSettingInfo(void) const
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s()\n", __CLASS__, __FUNCTION__);
#endif
SoapySDR::ArgInfoList args;
{
SoapySDR::ArgInfo info;
info.key = "direct_samp";
info.value = "0";
info.name = "Direct Sampling";
info.description = " HF1/HF2 Direct Sampling Mode";
info.type = SoapySDR::ArgInfo::STRING;
info.options.push_back("0");
info.optionNames.push_back("Off");
info.options.push_back("1");
info.optionNames.push_back("On");
args.push_back(info);
}
{
SoapySDR::ArgInfo info;
info.key = "clock_source";
info.value = "0";
info.name = "Clock Source";
info.description = "Clock source: 0=internal (default), 1=external";
info.type = SoapySDR::ArgInfo::STRING;
info.options.push_back("0");
info.optionNames.push_back("Internal");
info.options.push_back("1");
info.optionNames.push_back("External");
args.push_back(info);
}
return args;
}
void SoapyFobosSDR::writeSetting(const std::string &key, const std::string &value)
{
#ifdef SOAPY_FOBOS_PRINT_DEBUG
printf(">>> %s::%s()\n", __CLASS__, __FUNCTION__);
#endif
if (key == "direct_samp")
{
try
{
_direct_sampling = std::stoi(value);
}
catch (const std::invalid_argument &)
{
SoapySDR_logf(SOAPY_SDR_ERROR, "Invalid direct sampling mode '%s', [0:Off, 1:On]", value.c_str());
_direct_sampling = 0;
}
SoapySDR_logf(SOAPY_SDR_DEBUG, "Direct sampling mode: %d", _direct_sampling);
fobos_rx_set_direct_sampling(_dev, _direct_sampling);
}
else if (key == "clock_source")
{
if (value == "1" || value == "external" || value == "slave")
_clock_source = 1;
else if (value == "0" || value == "internal" || value == "master")
_clock_source = 0;
else
{
SoapySDR_logf(SOAPY_SDR_ERROR, "Invalid clock source '%s', use: 0/internal/master or 1/external/slave", value.c_str());
return;
}
SoapySDR_logf(SOAPY_SDR_INFO, "Setting clock source: %d (%s)", _clock_source, _clock_source ? "external" : "internal");
int result = fobos_rx_set_clk_source(_dev, _clock_source);
if (result != 0)
{
SoapySDR_logf(SOAPY_SDR_ERROR, "fobos_rx_set_clk_source failed with code %d", result);
}
}
}
std::string SoapyFobosSDR::readSetting(const std::string &key) const
{
if (key == "direct_samp")
{
return std::to_string(_direct_sampling);
}
if (key == "clock_source")
{
return std::to_string(_clock_source);
}
return "";
}