8
8
#include < config.h>
9
9
#include < sdrplay_api.h>
10
10
#include < gui/smgui.h>
11
+ #include < utils/optionlist.h>
11
12
12
13
#define CONCAT (a, b ) ((std::string(a) + b).c_str())
13
14
14
15
SDRPP_MOD_INFO{
15
16
/* Name: */ " sdrplay_source" ,
16
17
/* Description: */ " SDRplay source module for SDR++" ,
17
18
/* Author: */ " Ryzerth" ,
18
- /* Version: */ 0 , 1 , 0 ,
19
+ /* Version: */ 0 , 2 , 0 ,
19
20
/* Max instances */ 1
20
21
};
21
22
22
23
ConfigManager config;
23
24
24
- unsigned int sampleRates[] = {
25
- 2000000 ,
26
- 3000000 ,
27
- 4000000 ,
28
- 5000000 ,
29
- 6000000 ,
30
- 7000000 ,
31
- 8000000 ,
32
- 9000000 ,
33
- 10000000
34
- };
35
-
36
- const char * sampleRatesTxt =
37
- " 2MHz\0 "
38
- " 3MHz\0 "
39
- " 4MHz\0 "
40
- " 5MHz\0 "
41
- " 6MHz\0 "
42
- " 7MHz\0 "
43
- " 8MHz\0 "
44
- " 9MHz\0 "
45
- " 10MHz\0 " ;
46
-
47
- sdrplay_api_Bw_MHzT bandwidths[] = {
48
- sdrplay_api_BW_0_200,
49
- sdrplay_api_BW_0_300,
50
- sdrplay_api_BW_0_600,
51
- sdrplay_api_BW_1_536,
52
- sdrplay_api_BW_5_000,
53
- sdrplay_api_BW_6_000,
54
- sdrplay_api_BW_7_000,
55
- sdrplay_api_BW_8_000,
56
- };
57
-
58
- const char * bandwidthsTxt =
59
- " 200KHz\0 "
60
- " 300KHz\0 "
61
- " 600KHz\0 "
62
- " 1.536MHz\0 "
63
- " 5MHz\0 "
64
- " 6MHz\0 "
65
- " 7MHz\0 "
66
- " 8MHz\0 "
67
- " Auto\0 " ;
68
-
69
25
sdrplay_api_Bw_MHzT preferedBandwidth[] = {
70
26
sdrplay_api_BW_5_000,
71
27
sdrplay_api_BW_5_000,
@@ -208,6 +164,11 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
208
164
name += devArr[i].SerNo ;
209
165
name += ' )' ;
210
166
break ;
167
+ case SDRPLAY_RSP1B_ID:
168
+ name = " RSP1B (" ;
169
+ name += devArr[i].SerNo ;
170
+ name += ' )' ;
171
+ break ;
211
172
case SDRPLAY_RSP2_ID:
212
173
name = " RSP2 (" ;
213
174
name += devArr[i].SerNo ;
@@ -223,6 +184,11 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
223
184
name += devArr[i].SerNo ;
224
185
name += ' )' ;
225
186
break ;
187
+ case SDRPLAY_RSPdxR2_ID:
188
+ name = " RSPdx-R2 (" ;
189
+ name += devArr[i].SerNo ;
190
+ name += ' )' ;
191
+ break ;
226
192
default :
227
193
name = " Unknown (" ;
228
194
name += devArr[i].SerNo ;
@@ -290,14 +256,38 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
290
256
return ;
291
257
}
292
258
259
+ // Define the valid samplerates
260
+ samplerates.clear ();
261
+ samplerates.define (2e6 , " 2MHz" , 2e6 );
262
+ samplerates.define (3e6 , " 3MHz" , 3e6 );
263
+ samplerates.define (4e6 , " 4MHz" , 4e6 );
264
+ samplerates.define (5e6 , " 5MHz" , 5e6 );
265
+ samplerates.define (6e6 , " 6MHz" , 6e6 );
266
+ samplerates.define (7e6 , " 7MHz" , 7e6 );
267
+ samplerates.define (8e6 , " 8MHz" , 8e6 );
268
+ samplerates.define (9e6 , " 9MHz" , 9e6 );
269
+ samplerates.define (10e6 , " 10MHz" , 10e6 );
270
+
271
+ // Define the valid bandwidths
272
+ bandwidths.clear ();
273
+ bandwidths.define (200e3 , " 200KHz" , sdrplay_api_BW_0_200);
274
+ bandwidths.define (300e3 , " 300KHz" , sdrplay_api_BW_0_300);
275
+ bandwidths.define (600e3 , " 600KHz" , sdrplay_api_BW_0_600);
276
+ bandwidths.define (1.536e6 , " 1.536MHz" , sdrplay_api_BW_1_536);
277
+ bandwidths.define (5e6 , " 5MHz" , sdrplay_api_BW_5_000);
278
+ bandwidths.define (6e6 , " 6MHz" , sdrplay_api_BW_6_000);
279
+ bandwidths.define (7e6 , " 7MHz" , sdrplay_api_BW_7_000);
280
+ bandwidths.define (8e6 , " 8MHz" , sdrplay_api_BW_8_000);
281
+ bandwidths.define (0 , " Auto" , sdrplay_api_BW_Undefined);
282
+
293
283
channelParams = openDevParams->rxChannelA ;
294
284
295
285
selectedName = devNameList[id];
296
286
297
287
if (openDev.hwVer == SDRPLAY_RSP1_ID) {
298
288
lnaSteps = 4 ;
299
289
}
300
- else if (openDev.hwVer == SDRPLAY_RSP1A_ID) {
290
+ else if (openDev.hwVer == SDRPLAY_RSP1A_ID || openDev. hwVer == SDRPLAY_RSP1B_ID ) {
301
291
lnaSteps = 10 ;
302
292
}
303
293
else if (openDev.hwVer == SDRPLAY_RSP2_ID) {
@@ -306,78 +296,54 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
306
296
else if (openDev.hwVer == SDRPLAY_RSPduo_ID) {
307
297
lnaSteps = 10 ;
308
298
}
309
- else if (openDev.hwVer == SDRPLAY_RSPdx_ID) {
299
+ else if (openDev.hwVer == SDRPLAY_RSPdx_ID || openDev. hwVer == SDRPLAY_RSPdxR2_ID ) {
310
300
lnaSteps = 28 ;
311
301
}
312
302
313
- bool created = false ;
303
+ // Select default settings
304
+ srId = 0 ;
305
+ sampleRate = samplerates.value (0 );
306
+ bandwidthId = 8 ;
307
+ lnaGain = lnaSteps - 1 ;
308
+ gain = 59 ;
309
+ agc = false ;
310
+ agcAttack = 500 ;
311
+ agcDecay = 500 ;
312
+ agcDecayDelay = 200 ;
313
+ agcDecayThreshold = 5 ;
314
+ agcSetPoint = -30 ;
315
+ ifModeId = 0 ;
316
+ rsp1a_fmmwNotch = false ;
317
+ rsp2_fmmwNotch = false ;
318
+ rspdx_fmmwNotch = false ;
319
+ rspduo_fmmwNotch = false ;
320
+ rsp1a_dabNotch = false ;
321
+ rspdx_dabNotch = false ;
322
+ rspduo_dabNotch = false ;
323
+ rsp1a_biasT = false ;
324
+ rsp2_biasT = false ;
325
+ rspdx_biasT = false ;
326
+ rspduo_biasT = false ;
327
+ rsp2_antennaPort = 0 ;
328
+ rspdx_antennaPort = 0 ;
329
+ rspduo_antennaPort = 0 ;
330
+
314
331
config.acquire ();
315
- if (!config.conf [" devices" ].contains (selectedName)) {
316
- created = true ;
317
- config.conf [" devices" ][selectedName][" sampleRate" ] = sampleRates[0 ];
318
- config.conf [" devices" ][selectedName][" bwMode" ] = 8 ; // Auto
319
- config.conf [" devices" ][selectedName][" lnaGain" ] = lnaSteps - 1 ;
320
- config.conf [" devices" ][selectedName][" ifGain" ] = 59 ;
321
- config.conf [" devices" ][selectedName][" agc" ] = false ;
322
-
323
- config.conf [" devices" ][selectedName][" agcAttack" ] = 500 ;
324
- config.conf [" devices" ][selectedName][" agcDecay" ] = 500 ;
325
- config.conf [" devices" ][selectedName][" agcDecayDelay" ] = 200 ;
326
- config.conf [" devices" ][selectedName][" agcDecayThreshold" ] = 5 ;
327
- config.conf [" devices" ][selectedName][" agcSetPoint" ] = -30 ;
328
-
329
- config.conf [" devices" ][selectedName][" ifModeId" ] = 0 ;
330
-
331
- if (openDev.hwVer == SDRPLAY_RSP1_ID) {
332
- // No config to load
333
- }
334
- else if (openDev.hwVer == SDRPLAY_RSP1A_ID) {
335
- config.conf [" devices" ][selectedName][" fmmwNotch" ] = false ;
336
- config.conf [" devices" ][selectedName][" dabNotch" ] = false ;
337
- config.conf [" devices" ][selectedName][" biast" ] = false ;
338
- }
339
- else if (openDev.hwVer == SDRPLAY_RSP2_ID) {
340
- config.conf [" devices" ][selectedName][" antenna" ] = 0 ;
341
- config.conf [" devices" ][selectedName][" fmmwNotch" ] = false ;
342
- config.conf [" devices" ][selectedName][" biast" ] = false ;
343
- }
344
- else if (openDev.hwVer == SDRPLAY_RSPduo_ID) {
345
- config.conf [" devices" ][selectedName][" antenna" ] = 0 ;
346
- config.conf [" devices" ][selectedName][" fmmwNotch" ] = false ;
347
- config.conf [" devices" ][selectedName][" dabNotch" ] = false ;
348
- config.conf [" devices" ][selectedName][" biast" ] = false ;
349
- }
350
- else if (openDev.hwVer == SDRPLAY_RSPdx_ID) {
351
- config.conf [" devices" ][selectedName][" antenna" ] = 0 ;
352
- config.conf [" devices" ][selectedName][" fmmwNotch" ] = false ;
353
- config.conf [" devices" ][selectedName][" dabNotch" ] = false ;
354
- config.conf [" devices" ][selectedName][" biast" ] = false ;
355
- }
356
- }
357
332
358
333
// General options
359
- if (config.conf [" devices" ][selectedName].contains (" sampleRate" )) {
360
- sampleRate = config.conf [" devices" ][selectedName][" sampleRate" ];
361
- bool found = false ;
362
- for (int i = 0 ; i < 9 ; i++) {
363
- if (sampleRates[i] == sampleRate) {
364
- srId = i;
365
- found = true ;
366
- }
367
- }
368
- if (!found) {
369
- sampleRate = sampleRates[0 ];
370
- srId = 0 ;
334
+ if (config.conf [" devices" ][selectedName].contains (" samplerate" )) {
335
+ int sr = config.conf [" devices" ][selectedName][" samplerate" ];
336
+ if (samplerates.keyExists (sr)) {
337
+ srId = samplerates.keyId (sr);
338
+ sampleRate = samplerates[srId];
371
339
}
372
340
}
373
-
374
341
if (config.conf [" devices" ][selectedName].contains (" ifModeId" )) {
375
342
ifModeId = config.conf [" devices" ][selectedName][" ifModeId" ];
376
343
if (ifModeId != 0 ) {
377
344
sampleRate = ifModes[ifModeId].effectiveSamplerate ;
378
345
}
379
346
}
380
-
381
347
if (config.conf [" devices" ][selectedName].contains (" bwMode" )) {
382
348
bandwidthId = config.conf [" devices" ][selectedName][" bwMode" ];
383
349
}
@@ -388,11 +354,6 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
388
354
gain = config.conf [" devices" ][selectedName][" ifGain" ];
389
355
}
390
356
if (config.conf [" devices" ][selectedName].contains (" agc" )) {
391
- if (!config.conf [" devices" ][selectedName][" agc" ].is_boolean ()) {
392
- int oldMode = config.conf [" devices" ][selectedName][" agc" ];
393
- config.conf [" devices" ][selectedName][" agc" ] = (bool )(oldMode != 0 );
394
- created = true ;
395
- }
396
357
agc = config.conf [" devices" ][selectedName][" agc" ];
397
358
}
398
359
if (config.conf [" devices" ][selectedName].contains (" agcAttack" )) {
@@ -415,7 +376,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
415
376
if (openDev.hwVer == SDRPLAY_RSP1_ID) {
416
377
// No config to load
417
378
}
418
- else if (openDev.hwVer == SDRPLAY_RSP1A_ID) {
379
+ else if (openDev.hwVer == SDRPLAY_RSP1A_ID || openDev. hwVer == SDRPLAY_RSP1B_ID ) {
419
380
if (config.conf [" devices" ][selectedName].contains (" fmmwNotch" )) {
420
381
rsp1a_fmmwNotch = config.conf [" devices" ][selectedName][" fmmwNotch" ];
421
382
}
@@ -451,7 +412,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
451
412
rspduo_biasT = config.conf [" devices" ][selectedName][" biast" ];
452
413
}
453
414
}
454
- else if (openDev.hwVer == SDRPLAY_RSPdx_ID) {
415
+ else if (openDev.hwVer == SDRPLAY_RSPdx_ID || openDev. hwVer == SDRPLAY_RSPdxR2_ID ) {
455
416
if (config.conf [" devices" ][selectedName].contains (" antenna" )) {
456
417
rspdx_antennaPort = config.conf [" devices" ][selectedName][" antenna" ];
457
418
}
@@ -466,7 +427,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
466
427
}
467
428
}
468
429
469
- config.release (created );
430
+ config.release ();
470
431
471
432
if (lnaGain >= lnaSteps) { lnaGain = lnaSteps - 1 ; }
472
433
@@ -614,7 +575,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
614
575
615
576
// General options
616
577
if (_this->ifModeId == 0 ) {
617
- _this->bandwidth = (_this->bandwidthId == 8 ) ? preferedBandwidth[_this->srId ] : bandwidths[_this->bandwidthId ];
578
+ _this->bandwidth = (_this->bandwidthId == 8 ) ? preferedBandwidth[_this->srId ] : _this-> bandwidths [_this->bandwidthId ];
618
579
_this->openDevParams ->devParams ->fsFreq .fsHz = _this->sampleRate ;
619
580
_this->channelParams ->tunerParams .bwType = _this->bandwidth ;
620
581
}
@@ -693,14 +654,14 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
693
654
}
694
655
695
656
if (_this->ifModeId == 0 ) {
696
- if (SmGui::Combo (CONCAT (" ##sdrplay_sr" , _this->name ), &_this->srId , sampleRatesTxt )) {
697
- _this->sampleRate = sampleRates [_this->srId ];
657
+ if (SmGui::Combo (CONCAT (" ##sdrplay_sr" , _this->name ), &_this->srId , _this-> samplerates . txt )) {
658
+ _this->sampleRate = _this-> samplerates [_this->srId ];
698
659
if (_this->bandwidthId == 8 ) {
699
660
_this->bandwidth = preferedBandwidth[_this->srId ];
700
661
}
701
662
core::setInputSampleRate (_this->sampleRate );
702
663
config.acquire ();
703
- config.conf [" devices" ][_this->selectedName ][" sampleRate " ] = _this->sampleRate ;
664
+ config.conf [" devices" ][_this->selectedName ][" samplerate " ] = _this->samplerates . key (_this-> srId ) ;
704
665
config.release (true );
705
666
}
706
667
@@ -715,8 +676,8 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
715
676
716
677
SmGui::LeftLabel (" Bandwidth" );
717
678
SmGui::FillWidth ();
718
- if (SmGui::Combo (CONCAT (" ##sdrplay_bw" , _this->name ), &_this->bandwidthId , bandwidthsTxt )) {
719
- _this->bandwidth = (_this->bandwidthId == 8 ) ? preferedBandwidth[_this->srId ] : bandwidths[_this->bandwidthId ];
679
+ if (SmGui::Combo (CONCAT (" ##sdrplay_bw" , _this->name ), &_this->bandwidthId , _this-> bandwidths . txt )) {
680
+ _this->bandwidth = (_this->bandwidthId == 8 ) ? preferedBandwidth[_this->srId ] : _this-> bandwidths [_this->bandwidthId ];
720
681
if (_this->running ) {
721
682
_this->channelParams ->tunerParams .bwType = _this->bandwidth ;
722
683
sdrplay_api_Update (_this->openDev .dev , _this->openDev .tuner , sdrplay_api_Update_Tuner_BwType, sdrplay_api_Update_Ext1_None);
@@ -745,10 +706,28 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
745
706
}
746
707
else {
747
708
config.acquire ();
748
- _this->sampleRate = config.conf [" devices" ][_this->selectedName ][" sampleRate" ];
749
- _this->bandwidthId = config.conf [" devices" ][_this->selectedName ][" bwMode" ];
750
- config.release (false );
751
- _this->bandwidth = (_this->bandwidthId == 8 ) ? preferedBandwidth[_this->srId ] : bandwidths[_this->bandwidthId ];
709
+ // Reload samplerate
710
+ if (config.conf [" devices" ][_this->selectedName ].contains (" samplerate" )) {
711
+ int sr = config.conf [" devices" ][_this->selectedName ][" samplerate" ];
712
+ if (_this->samplerates .keyExists (sr)) {
713
+ _this->srId = _this->samplerates .keyId (sr);
714
+ }
715
+ }
716
+ else {
717
+ _this->srId = 0 ;
718
+ }
719
+
720
+ // Reload bandwidth
721
+ if (config.conf [" devices" ][_this->selectedName ].contains (" bwMode" )) {
722
+ _this->bandwidthId = config.conf [" devices" ][_this->selectedName ][" bwMode" ];
723
+ }
724
+ else {
725
+ // Auto
726
+ _this->bandwidthId = 8 ;
727
+ }
728
+ _this->sampleRate = _this->samplerates [_this->srId ];
729
+ config.release ();
730
+ _this->bandwidth = (_this->bandwidthId == 8 ) ? preferedBandwidth[_this->srId ] : _this->bandwidths [_this->bandwidthId ];
752
731
}
753
732
core::setInputSampleRate (_this->sampleRate );
754
733
config.acquire ();
@@ -854,6 +833,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
854
833
_this->RSP1Menu ();
855
834
break ;
856
835
case SDRPLAY_RSP1A_ID:
836
+ case SDRPLAY_RSP1B_ID:
857
837
_this->RSP1AMenu ();
858
838
break ;
859
839
case SDRPLAY_RSP2_ID:
@@ -863,6 +843,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
863
843
_this->RSPduoMenu ();
864
844
break ;
865
845
case SDRPLAY_RSPdx_ID:
846
+ case SDRPLAY_RSPdxR2_ID:
866
847
_this->RSPdxMenu ();
867
848
break ;
868
849
default :
@@ -1146,7 +1127,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
1146
1127
sdrplay_api_RxChannelParamsT* channelParams;
1147
1128
1148
1129
sdrplay_api_Bw_MHzT bandwidth;
1149
- int bandwidthId = 0 ;
1130
+ int bandwidthId = 8 ; // Auto
1150
1131
1151
1132
int devId = 0 ;
1152
1133
int srId = 0 ;
@@ -1201,6 +1182,9 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
1201
1182
std::string devListTxt;
1202
1183
std::vector<std::string> devNameList;
1203
1184
std::string selectedName;
1185
+
1186
+ OptionList<int , int > samplerates;
1187
+ OptionList<int , sdrplay_api_Bw_MHzT> bandwidths;
1204
1188
};
1205
1189
1206
1190
MOD_EXPORT void _INIT_ () {
0 commit comments