orion-sdr 0.0.16

DSP/SDR block library targeting HF-to-UHF, satellites, and Python bindings. Roadmap inside.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod crc;
pub mod gray;
pub mod ldpc;
pub mod ft8;
pub mod ft4;

pub use crc::ft8_crc14;
pub use gray::{gray8_encode, gray8_decode, gray4_encode, gray4_decode};
pub use ldpc::{ldpc_encode, ldpc_decode_soft};
pub use ft8::{Ft8Codec, Ft8Bits};
pub use ft4::{Ft4Codec, Ft4Bits};