]> code.octet-stream.net Git - m17rt/commit
Initial public commit - basic demod and high level structure in place
authorThomas Karpiniec <tom.karpiniec@outlook.com>
Fri, 27 Dec 2024 00:32:33 +0000 (11:32 +1100)
committerThomas Karpiniec <tom.karpiniec@outlook.com>
Fri, 27 Dec 2024 00:32:33 +0000 (11:32 +1100)
commite67ea96c8a3d7c23ba29c6ed91ddb451927176a1
tree3c6cac622f5e719a6fa4bf3408c8f6d5ab2b9fba
Initial public commit - basic demod and high level structure in place
28 files changed:
.gitignore [new file with mode: 0644]
Cargo.lock [new file with mode: 0755]
Cargo.toml [new file with mode: 0755]
LICENCE.TXT [new file with mode: 0644]
README.TXT [new file with mode: 0644]
demod/Cargo.toml [new file with mode: 0755]
demod/src/main.rs [new file with mode: 0755]
m17app/Cargo.toml [new file with mode: 0755]
m17app/src/app.rs [new file with mode: 0644]
m17app/src/lib.rs [new file with mode: 0755]
m17app/src/tnc.rs [new file with mode: 0644]
m17codec2/Cargo.toml [new file with mode: 0755]
m17codec2/src/lib.rs [new file with mode: 0755]
m17core/Cargo.toml [new file with mode: 0755]
m17core/src/address.rs [new file with mode: 0755]
m17core/src/bits.rs [new file with mode: 0755]
m17core/src/crc.rs [new file with mode: 0755]
m17core/src/decode.rs [new file with mode: 0755]
m17core/src/fec.rs [new file with mode: 0755]
m17core/src/interleave.rs [new file with mode: 0755]
m17core/src/kiss.rs [new file with mode: 0644]
m17core/src/lib.rs [new file with mode: 0755]
m17core/src/modem.rs [new file with mode: 0644]
m17core/src/protocol.rs [new file with mode: 0755]
m17core/src/random.rs [new file with mode: 0755]
m17core/src/shaping.rs [new file with mode: 0755]
m17core/src/tnc.rs [new file with mode: 0644]
m17core/src/traits.rs [new file with mode: 0644]