├── .github └── FUNDING.yaml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── decode ├── symbols.c └── viterbi.c ├── doc ├── CMakeLists.txt ├── Doxyfile.in └── mainpage.dox ├── encode ├── convol.c └── symbols.c ├── m17.c ├── m17.h ├── math ├── golay.c ├── math.c └── rrc.c ├── payload ├── call.c ├── crc.c ├── lich.c └── lsf.c ├── phy ├── interleave.c ├── randomize.c ├── slice.c └── sync.c └── unit_tests ├── CMakeLists.txt └── unit_tests.c /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | custom: https://www.paypal.com/donate/?hosted_button_id=4HTHZCS8UYPU6 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/README.md -------------------------------------------------------------------------------- /decode/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/decode/symbols.c -------------------------------------------------------------------------------- /decode/viterbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/decode/viterbi.c -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/doc/mainpage.dox -------------------------------------------------------------------------------- /encode/convol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/encode/convol.c -------------------------------------------------------------------------------- /encode/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/encode/symbols.c -------------------------------------------------------------------------------- /m17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/m17.c -------------------------------------------------------------------------------- /m17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/m17.h -------------------------------------------------------------------------------- /math/golay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/math/golay.c -------------------------------------------------------------------------------- /math/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/math/math.c -------------------------------------------------------------------------------- /math/rrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/math/rrc.c -------------------------------------------------------------------------------- /payload/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/payload/call.c -------------------------------------------------------------------------------- /payload/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/payload/crc.c -------------------------------------------------------------------------------- /payload/lich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/payload/lich.c -------------------------------------------------------------------------------- /payload/lsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/payload/lsf.c -------------------------------------------------------------------------------- /phy/interleave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/phy/interleave.c -------------------------------------------------------------------------------- /phy/randomize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/phy/randomize.c -------------------------------------------------------------------------------- /phy/slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/phy/slice.c -------------------------------------------------------------------------------- /phy/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/phy/sync.c -------------------------------------------------------------------------------- /unit_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/unit_tests/CMakeLists.txt -------------------------------------------------------------------------------- /unit_tests/unit_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M17-Project/libm17/HEAD/unit_tests/unit_tests.c --------------------------------------------------------------------------------