mfsk-core 0.5.2

Pure-Rust WSJT-family decoders and synthesisers (FT8 FT4 FST4 WSPR JT9 JT65 Q65) behind a zero-cost Protocol trait. Host (rustfft) or no_std embedded targets (ESP32-S3, RP2350, Cortex-M) via a pluggable FFT backend; optional fixed-point hot path for FPU-less MCUs.
Documentation
1
2
3
4
5
6
7
8
//! Re-export of the WSJT 77-bit message codec from `mfsk-msg`.
//!
//! The actual implementation lives in [`crate::msg::wsjt77`]. This façade exists
//! so existing `ft8-core::message::{pack77_*, unpack77, …}` callers keep
//! working during the migration. New code should import from `mfsk-msg`
//! directly.

pub use crate::msg::wsjt77::*;