mfsk-core 0.4.4

Pure-Rust WSJT-family decoders and synthesisers (FT8 FT4 FST4 WSPR JT9 JT65 Q65) behind a zero-cost Protocol trait. no_std + alloc capable with a pluggable FFT backend; ESP32-S3 PoC included.
Documentation
1
2
3
4
5
6
7
8
//! Re-export of the shared LDPC(174,91) codec from `mfsk-fec`.
//!
//! Kept as a façade module so existing `ft8-core::ldpc::{bp,osd,tables}`
//! callers continue to resolve. New code should prefer
//! [`crate::fec::Ldpc174_91`] (via the `FecCodec` trait) directly.

pub use crate::fec::ldpc::{BpResult, OsdResult, bp_decode, ldpc_encode, osd_decode_deep};
pub use crate::fec::ldpc::{bp, osd, tables};