├── .gitignore ├── LICENSE ├── README.md ├── SoapySX ├── 60-pipewire-do-not-use-i2s.lua ├── CMakeLists.txt ├── SoapySX.cpp └── test │ ├── README.md │ ├── test.py │ ├── test_gains.py │ ├── test_linked_streams.py │ └── test_timestamps.py ├── dts ├── Makefile ├── README.md ├── sx1255_raspberrypi.dts └── verify_eeprom.sh └── example ├── linear_repeater.py └── tx_test.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | __pycache__/ 3 | rx_test.raw 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/README.md -------------------------------------------------------------------------------- /SoapySX/60-pipewire-do-not-use-i2s.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/SoapySX/60-pipewire-do-not-use-i2s.lua -------------------------------------------------------------------------------- /SoapySX/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/SoapySX/CMakeLists.txt -------------------------------------------------------------------------------- /SoapySX/SoapySX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/SoapySX/SoapySX.cpp -------------------------------------------------------------------------------- /SoapySX/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/SoapySX/test/README.md -------------------------------------------------------------------------------- /SoapySX/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/SoapySX/test/test.py -------------------------------------------------------------------------------- /SoapySX/test/test_gains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/SoapySX/test/test_gains.py -------------------------------------------------------------------------------- /SoapySX/test/test_linked_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/SoapySX/test/test_linked_streams.py -------------------------------------------------------------------------------- /SoapySX/test/test_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/SoapySX/test/test_timestamps.py -------------------------------------------------------------------------------- /dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/dts/Makefile -------------------------------------------------------------------------------- /dts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/dts/README.md -------------------------------------------------------------------------------- /dts/sx1255_raspberrypi.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/dts/sx1255_raspberrypi.dts -------------------------------------------------------------------------------- /dts/verify_eeprom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/dts/verify_eeprom.sh -------------------------------------------------------------------------------- /example/linear_repeater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/example/linear_repeater.py -------------------------------------------------------------------------------- /example/tx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/sxxcvr/HEAD/example/tx_test.py --------------------------------------------------------------------------------