├── .gitignore ├── BlockGen.cpp ├── CMakeLists.txt ├── ChirpGenerator.hpp ├── LoRaCodes.hpp ├── LoRaDecoder.cpp ├── LoRaDemod.cpp ├── LoRaDetector.hpp ├── LoRaEncoder.cpp ├── LoRaMod.cpp ├── README.md ├── RN2483.py ├── RN2483Capture.py ├── TestCodesSx.cpp ├── TestDetector.cpp ├── TestGen.cpp ├── TestHamming.cpp ├── TestLoopback.cpp ├── examples ├── lora_sdr_client.pth ├── lora_sdr_relay.pth ├── lora_simulation.pth ├── modulation_explained_plots.py └── rx_RN2483.pth └── kissfft.hh /.gitignore: -------------------------------------------------------------------------------- 1 | /*.pyc 2 | /build/ 3 | -------------------------------------------------------------------------------- /BlockGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/BlockGen.cpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChirpGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/ChirpGenerator.hpp -------------------------------------------------------------------------------- /LoRaCodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/LoRaCodes.hpp -------------------------------------------------------------------------------- /LoRaDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/LoRaDecoder.cpp -------------------------------------------------------------------------------- /LoRaDemod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/LoRaDemod.cpp -------------------------------------------------------------------------------- /LoRaDetector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/LoRaDetector.hpp -------------------------------------------------------------------------------- /LoRaEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/LoRaEncoder.cpp -------------------------------------------------------------------------------- /LoRaMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/LoRaMod.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/README.md -------------------------------------------------------------------------------- /RN2483.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/RN2483.py -------------------------------------------------------------------------------- /RN2483Capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/RN2483Capture.py -------------------------------------------------------------------------------- /TestCodesSx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/TestCodesSx.cpp -------------------------------------------------------------------------------- /TestDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/TestDetector.cpp -------------------------------------------------------------------------------- /TestGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/TestGen.cpp -------------------------------------------------------------------------------- /TestHamming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/TestHamming.cpp -------------------------------------------------------------------------------- /TestLoopback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/TestLoopback.cpp -------------------------------------------------------------------------------- /examples/lora_sdr_client.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/examples/lora_sdr_client.pth -------------------------------------------------------------------------------- /examples/lora_sdr_relay.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/examples/lora_sdr_relay.pth -------------------------------------------------------------------------------- /examples/lora_simulation.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/examples/lora_simulation.pth -------------------------------------------------------------------------------- /examples/modulation_explained_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/examples/modulation_explained_plots.py -------------------------------------------------------------------------------- /examples/rx_RN2483.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/examples/rx_RN2483.pth -------------------------------------------------------------------------------- /kissfft.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/LoRa-SDR/HEAD/kissfft.hh --------------------------------------------------------------------------------