mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-10 12:47:40 +01:00
soapy_source: refresh devices on start if none in devList
This commit is contained in:
parent
f572d12936
commit
49fd49b4d6
@ -296,6 +296,14 @@ private:
|
||||
static void start(void* ctx) {
|
||||
SoapyModule* _this = (SoapyModule*)ctx;
|
||||
if (_this->running) { return; }
|
||||
if (_this->devId < 0) {
|
||||
_this->refresh();
|
||||
_this->selectDevice(config.conf["device"]);
|
||||
if (_this->devId < 0) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
_this->dev = SoapySDR::Device::make(_this->devArgs);
|
||||
|
||||
_this->dev->setSampleRate(SOAPY_SDR_RX, _this->channelId, _this->sampleRate);
|
||||
|
Loading…
Reference in New Issue
Block a user