mfsk-core 0.3.3

Pure-Rust library for WSJT-family digital amateur-radio modes (FT8/FT4/FST4/WSPR/JT9/JT65/Q65) plus the uvpacket NFM/SSB packet protocol: protocol traits, DSP, FEC codecs, message codecs, decoders and synthesisers — unified behind a zero-cost generic abstraction.
Documentation
1
2
3
4
5
6
7
8
//! Re-export of the generic linear resampler from `mfsk-core::dsp::resample`.
//!
//! The implementation is protocol-agnostic (no FT8 constants), so it lives in
//! `mfsk-core` and is shared by every MFSK protocol crate. Existing callers
//! that reach for `crate::ft8::resample::resample_to_12k` keep working via this
//! façade.

pub use crate::core::dsp::resample::{resample_f32_to_12k, resample_to_12k};