Skip to content

Commit 46bcba7

Browse files
fix some settings not applied on start for RSP1B and RSPdxR2
1 parent 45e4286 commit 46bcba7

File tree

1 file changed

+6
-4
lines changed
  • source_modules/sdrplay_source/src

1 file changed

+6
-4
lines changed

source_modules/sdrplay_source/src/main.cpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ const char* ifModeTxt =
7878

7979
const char* rspduo_antennaPortsTxt = "Tuner 1 (50Ohm)\0Tuner 1 (Hi-Z)\0Tuner 2 (50Ohm)\0";
8080

81+
#define MAX_DEV_COUNT 16
82+
8183
class SDRPlaySourceModule : public ModuleManager::Instance {
8284
public:
8385
SDRPlaySourceModule(std::string name) {
@@ -146,9 +148,9 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
146148
devNameList.clear();
147149
devListTxt = "";
148150

149-
sdrplay_api_DeviceT devArr[128];
151+
sdrplay_api_DeviceT devArr[MAX_DEV_COUNT];
150152
unsigned int numDev = 0;
151-
sdrplay_api_GetDevices(devArr, &numDev, 128);
153+
sdrplay_api_GetDevices(devArr, &numDev, MAX_DEV_COUNT);
152154

153155
for (unsigned int i = 0; i < numDev; i++) {
154156
devList.push_back(devArr[i]);
@@ -532,7 +534,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
532534
_this->bufferSize = (float)_this->sampleRate / 200.0f;
533535

534536
// RSP1A Options
535-
if (_this->openDev.hwVer == SDRPLAY_RSP1A_ID) {
537+
if (_this->openDev.hwVer == SDRPLAY_RSP1A_ID || _this->openDev.hwVer == SDRPLAY_RSP1B_ID) {
536538
_this->openDevParams->devParams->rsp1aParams.rfNotchEnable = _this->rsp1a_fmmwNotch;
537539
_this->openDevParams->devParams->rsp1aParams.rfDabNotchEnable = _this->rsp1a_dabNotch;
538540
_this->channelParams->rsp1aTunerParams.biasTEnable = _this->rsp1a_biasT;
@@ -562,7 +564,7 @@ class SDRPlaySourceModule : public ModuleManager::Instance {
562564
sdrplay_api_Update(_this->openDev.dev, _this->openDev.tuner, sdrplay_api_Update_RspDuo_RfDabNotchControl, sdrplay_api_Update_Ext1_None);
563565
sdrplay_api_Update(_this->openDev.dev, _this->openDev.tuner, sdrplay_api_Update_RspDuo_Tuner1AmNotchControl, sdrplay_api_Update_Ext1_None);
564566
}
565-
else if (_this->openDev.hwVer == SDRPLAY_RSPdx_ID) {
567+
else if (_this->openDev.hwVer == SDRPLAY_RSPdx_ID || _this->openDev.hwVer == SDRPLAY_RSPdxR2_ID) {
566568
_this->openDevParams->devParams->rspDxParams.rfNotchEnable = _this->rspdx_fmmwNotch;
567569
_this->openDevParams->devParams->rspDxParams.rfDabNotchEnable = _this->rspdx_dabNotch;
568570
_this->openDevParams->devParams->rspDxParams.biasTEnable = _this->rspdx_biasT;

0 commit comments

Comments
 (0)