Merge pull request #1021 from sergeyvfx/fix_start_crash

Fix crash in LimeSDR start when the device is disconnected
noise_reduction
AlexandreRouma 2023-03-23 23:20:49 +01:00 zatwierdzone przez GitHub
commit d3d245992d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -330,7 +330,10 @@ private:
if (err) {
LMS_Close(_this->openDev);
LMS_Open(&_this->openDev, _this->devList[_this->devId], NULL);
LMS_Init(_this->openDev);
if (err = LMS_Init(_this->openDev)) {
flog::error("Failed to re-initialize device ({})", err);
return;
}
}
flog::warn("Channel count: {0}", LMS_GetNumChannels(_this->openDev, false));