1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 07:16:48 -04:00

Airspy HF: added missing files to the libairspyhf built in libary cmake file

This commit is contained in:
f4exb 2018-01-26 03:00:10 +01:00
parent cc1033b3c5
commit ba4d9ec0ca
2 changed files with 2 additions and 1 deletions

View File

@ -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(

View File

@ -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);
}