Written in C, it has all the components described by the protocol's specification of the stream and packet modes:
- convolutional encoder with soft Viterbi decoder (utilizing fixed point arithmetic),
- Golay encoder with soft decoder (fixed point),
- bit interleaver and randomizer,
- cyclic redundancy check (CRC) calculation (both LSF and arbitrary input),
- callsign encoder and decoder
There's no support for any encryption.
As per the specification document, the address space is divided into parts. Encodable callsign space is accessed by using the base40 alphabet. If the first character is set to #
, the address belongs to the extended hash-address space. The broadcast address is represented by @ALL
. Zero-address is invalid and decodes into a null-string. The reserved chunk for application use cannot be accessed using any string.
- Build the shared object
libm17.so
by runningmake
. - You can install the library object with
make install
.
Unit tests are available and can be run with make test && make testrun
.
- Configre the build - run
cmake -B build
to get default options. - Build the library by running
cmake --build build
. - At this point tests can be run by doing any of:
cmake --build build --target test
ctest --test-dir build
./build/unti_tests/unit_tests
- Finally, installation is just
cmake --install build