From 0b9d5c2b692bdf817fae7d8b45d400a95dd0fecb Mon Sep 17 00:00:00 2001 From: bvernoux Date: Fri, 16 Apr 2021 19:40:12 +0200 Subject: [PATCH 1/2] Fix build with SDK 8.1 or more (replace #include supported only with Windows SDK10 by #include support by Windows SDK 8.1 or more) --- core/src/gui/widgets/folder_select.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/gui/widgets/folder_select.h b/core/src/gui/widgets/folder_select.h index 3fdeff0..86b4afb 100644 --- a/core/src/gui/widgets/folder_select.h +++ b/core/src/gui/widgets/folder_select.h @@ -6,7 +6,7 @@ #ifdef _WIN32 #include -#include +#include #include #endif From c2bccc9b042de55c67ac1d34dcf66747a482f3c6 Mon Sep 17 00:00:00 2001 From: bvernoux Date: Fri, 16 Apr 2021 19:48:25 +0200 Subject: [PATCH 2/2] Fixed some typos in spdlog::error() for airspy_source (removed HF+) --- airspy_source/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/airspy_source/src/main.cpp b/airspy_source/src/main.cpp index 4f66b36..f54b0a2 100644 --- a/airspy_source/src/main.cpp +++ b/airspy_source/src/main.cpp @@ -113,7 +113,7 @@ public: if (err != 0) { char buf[1024]; sprintf(buf, "%016" PRIX64, serial); - spdlog::error("Could not open Airspy HF+ {0}", buf); + spdlog::error("Could not open Airspy {0}", buf); selectedSerial = 0; return; } @@ -121,7 +121,7 @@ public: catch (std::exception e) { char buf[1024]; sprintf(buf, "%016" PRIX64, serial); - spdlog::error("Could not open Airspy HF+ {0}", buf); + spdlog::error("Could not open Airspy {0}", buf); } selectedSerial = serial; @@ -240,7 +240,7 @@ private: return; } if (_this->selectedSerial == 0) { - spdlog::error("Tried to start AirspyHF+ source with null serial"); + spdlog::error("Tried to start Airspy source with null serial"); return; }