├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── cmake_uninstall.cmake.in └── modules │ ├── FindLIBAIRSPY.cmake │ ├── FindThreads.cmake │ └── FindUSB1.cmake ├── libairspyhf ├── CMakeLists.txt ├── airspyhf.sln ├── airspyhf.vcxproj ├── libairspyhf.pc.in └── src │ ├── CMakeLists.txt │ ├── airspyhf.c │ ├── airspyhf.h │ ├── airspyhf_commands.h │ ├── iqbalancer.c │ └── iqbalancer.h └── tools ├── 52-airspyhf.rules ├── CMakeLists.txt ├── getopt ├── LICENSE.md ├── getopt.c └── getopt.h └── src ├── CMakeLists.txt ├── README ├── airspyhf_calibrate.c ├── airspyhf_gpio.c ├── airspyhf_info.c ├── airspyhf_lib_version.c └── airspyhf_rx.c /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/README.md -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /cmake/modules/FindLIBAIRSPY.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/cmake/modules/FindLIBAIRSPY.cmake -------------------------------------------------------------------------------- /cmake/modules/FindThreads.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/cmake/modules/FindThreads.cmake -------------------------------------------------------------------------------- /cmake/modules/FindUSB1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/cmake/modules/FindUSB1.cmake -------------------------------------------------------------------------------- /libairspyhf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/CMakeLists.txt -------------------------------------------------------------------------------- /libairspyhf/airspyhf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/airspyhf.sln -------------------------------------------------------------------------------- /libairspyhf/airspyhf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/airspyhf.vcxproj -------------------------------------------------------------------------------- /libairspyhf/libairspyhf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/libairspyhf.pc.in -------------------------------------------------------------------------------- /libairspyhf/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/src/CMakeLists.txt -------------------------------------------------------------------------------- /libairspyhf/src/airspyhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/src/airspyhf.c -------------------------------------------------------------------------------- /libairspyhf/src/airspyhf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/src/airspyhf.h -------------------------------------------------------------------------------- /libairspyhf/src/airspyhf_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/src/airspyhf_commands.h -------------------------------------------------------------------------------- /libairspyhf/src/iqbalancer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/src/iqbalancer.c -------------------------------------------------------------------------------- /libairspyhf/src/iqbalancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/libairspyhf/src/iqbalancer.h -------------------------------------------------------------------------------- /tools/52-airspyhf.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/52-airspyhf.rules -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/getopt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/getopt/LICENSE.md -------------------------------------------------------------------------------- /tools/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/getopt/getopt.c -------------------------------------------------------------------------------- /tools/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/getopt/getopt.h -------------------------------------------------------------------------------- /tools/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/src/CMakeLists.txt -------------------------------------------------------------------------------- /tools/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/src/README -------------------------------------------------------------------------------- /tools/src/airspyhf_calibrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/src/airspyhf_calibrate.c -------------------------------------------------------------------------------- /tools/src/airspyhf_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/src/airspyhf_gpio.c -------------------------------------------------------------------------------- /tools/src/airspyhf_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/src/airspyhf_info.c -------------------------------------------------------------------------------- /tools/src/airspyhf_lib_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/src/airspyhf_lib_version.c -------------------------------------------------------------------------------- /tools/src/airspyhf_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airspy/airspyhf/HEAD/tools/src/airspyhf_rx.c --------------------------------------------------------------------------------