kopia lustrzana https://github.com/AlexandreRouma/SDRPlusPlus
Fixed airspy_source bug
rodzic
27eb2571a4
commit
7ff8f3f7b9
|
@ -105,15 +105,16 @@ public:
|
|||
}
|
||||
|
||||
void selectBySerial(uint64_t serial) {
|
||||
selectedSerial = serial;
|
||||
airspy_device* dev;
|
||||
int err = airspy_open_sn(&dev, selectedSerial);
|
||||
int err = airspy_open_sn(&dev, serial);
|
||||
if (err != 0) {
|
||||
char buf[1024];
|
||||
sprintf(buf, "%016" PRIX64, selectedSerial);
|
||||
sprintf(buf, "%016" PRIX64, serial);
|
||||
spdlog::error("Could not open Airspy HF+ {0}", buf);
|
||||
selectedSerial = 0;
|
||||
return;
|
||||
}
|
||||
selectedSerial = serial;
|
||||
|
||||
uint32_t sampleRates[256];
|
||||
airspy_get_samplerates(dev, sampleRates, 0);
|
||||
|
|
|
@ -33,10 +33,6 @@
|
|||
#include <options.h>
|
||||
#include <gui/colormaps.h>
|
||||
|
||||
|
||||
#include <gui/widgets/file_select.h>
|
||||
#include <gui/widgets/folder_select.h>
|
||||
|
||||
// const int FFTSizes[] = {
|
||||
// 65536,
|
||||
// 32768,
|
||||
|
|
Ładowanie…
Reference in New Issue