From ba4d9ec0cac82203ead5eb139409dbcc36b60883 Mon Sep 17 00:00:00 2001 From: f4exb Date: Fri, 26 Jan 2018 03:00:10 +0100 Subject: [PATCH] Airspy HF: added missing files to the libairspyhf built in libary cmake file --- libairspyhf/CMakeLists.txt | 2 ++ sdrbase/dsp/filerecord.cpp | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libairspyhf/CMakeLists.txt b/libairspyhf/CMakeLists.txt index 645d76fae..f38afdcbc 100644 --- a/libairspyhf/CMakeLists.txt +++ b/libairspyhf/CMakeLists.txt @@ -5,12 +5,14 @@ find_package(LibUSB) set(airspyhf_SOURCES ${LIBAIRSPYHFSRC}/libairspyhf/src/airspyhf.c ${LIBAIRSPYHFSRC}/libairspyhf/src/iqbalancer.c + ${LIBAIRSPYHFSRC}/libairspyhf/src/iqconverter_int16.c ) set(airspyhf_HEADERS ${LIBAIRSPYHFSRC}/libairspyhf/src/airspyhf.h ${LIBAIRSPYHFSRC}/libairspyhf/src/airspyhf_commands.h ${LIBAIRSPYHFSRC}/libairspyhf/src/iqbalancer.h + ${LIBAIRSPYHFSRC}/libairspyhf/src/iqconverter_int16.h ) include_directories( diff --git a/sdrbase/dsp/filerecord.cpp b/sdrbase/dsp/filerecord.cpp index 469743b91..82fc684c8 100644 --- a/sdrbase/dsp/filerecord.cpp +++ b/sdrbase/dsp/filerecord.cpp @@ -139,5 +139,4 @@ void FileRecord::readHeader(std::ifstream& sampleFile, Header& header) if ((header.sampleSize != 16) && (header.sampleSize != 24)) { // assume 16 bits if garbage (old I/Q file) header.sampleSize = 16; } - qDebug("FileRecord::readHeader: sampleSize: %u", header.sampleSize); }