From f3f0f90a51412d1684b43be6f2b5f93cb4154ee0 Mon Sep 17 00:00:00 2001 From: Arturs Artamonovs Date: Fri, 25 Oct 2024 10:29:54 +0100 Subject: Initial empty project structure --- Radio/HW/AirSpy/AirSpy.swift | 11 +++++++++++ Radio/HW/AirSpyHF/AirSpyHF.swift | 11 +++++++++++ Radio/HW/BladeRF/BladeRF.swift | 12 ++++++++++++ Radio/HW/RtlSdr/RtlSdr.swift | 12 ++++++++++++ 4 files changed, 46 insertions(+) create mode 100644 Radio/HW/AirSpy/AirSpy.swift create mode 100644 Radio/HW/AirSpyHF/AirSpyHF.swift create mode 100644 Radio/HW/BladeRF/BladeRF.swift create mode 100644 Radio/HW/RtlSdr/RtlSdr.swift (limited to 'Radio/HW') diff --git a/Radio/HW/AirSpy/AirSpy.swift b/Radio/HW/AirSpy/AirSpy.swift new file mode 100644 index 0000000..1db0cd6 --- /dev/null +++ b/Radio/HW/AirSpy/AirSpy.swift @@ -0,0 +1,11 @@ +// +// AirSpy.swift +// PrySDR +// +// Created by Jacky Jack on 25/10/2024. +// + +/// Wrapper for libairspy library +class AirSpy { + +} diff --git a/Radio/HW/AirSpyHF/AirSpyHF.swift b/Radio/HW/AirSpyHF/AirSpyHF.swift new file mode 100644 index 0000000..e399d24 --- /dev/null +++ b/Radio/HW/AirSpyHF/AirSpyHF.swift @@ -0,0 +1,11 @@ +// +// AirSpyHF.swift +// PrySDR +// +// Created by Jacky Jack on 25/10/2024. +// + +/// Wrapper for libairspyhf library +class AirSpyHF { + +} diff --git a/Radio/HW/BladeRF/BladeRF.swift b/Radio/HW/BladeRF/BladeRF.swift new file mode 100644 index 0000000..1b72f62 --- /dev/null +++ b/Radio/HW/BladeRF/BladeRF.swift @@ -0,0 +1,12 @@ +// +// BladeRF.swift +// PrySDR +// +// Created by Jacky Jack on 25/10/2024. +// + + +/// Wrapper and routines for BladeRF +class BladeRF { + +} diff --git a/Radio/HW/RtlSdr/RtlSdr.swift b/Radio/HW/RtlSdr/RtlSdr.swift new file mode 100644 index 0000000..3b9063c --- /dev/null +++ b/Radio/HW/RtlSdr/RtlSdr.swift @@ -0,0 +1,12 @@ +// +// RtlSdr.swift +// PrySDR +// +// Created by Jacky Jack on 25/10/2024. +// + + +/// Wrapper for librtlsdr library +class RtlSdr { + +} -- cgit v1.2.3