mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-10 12:47:40 +01:00
Added error message on SDRplay source when API isn't working
This commit is contained in:
parent
0498a48b93
commit
14fae89a0b
@ -116,7 +116,11 @@ public:
|
||||
cbFuncs.StreamACbFn = streamCB;
|
||||
cbFuncs.StreamBCbFn = streamCB;
|
||||
|
||||
sdrplay_api_Open();
|
||||
sdrplay_api_ErrT err = sdrplay_api_Open();
|
||||
if (err != sdrplay_api_Success) {
|
||||
spdlog::error("Could not intiatialized the SDRplay API. Make sure that the service is running.");
|
||||
return;
|
||||
}
|
||||
|
||||
sampleRate = 2000000.0;
|
||||
srId = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user