mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-26 12:27:51 +02:00
Added error message on SDRplay source when API isn't working
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user