orion-sdr 0.0.24

DSP/SDR block library targeting HF-to-UHF, satellites, and Python bindings. Roadmap inside.
Documentation
// src/sync/mod.rs
//
// Frame synchronisation for FT8 and FT4.
//
// Provides:
//   - `ft8_sync` — search an IQ buffer for FT8 frames, return soft LLRs
//   - `ft4_sync` — search an IQ buffer for FT4 frames, return soft LLRs
//   - `Ft8SyncResult` / `Ft4SyncResult` — per-candidate decode inputs
//   - `Waterfall` / `compute_waterfall` — low-level spectrogram (exposed for testing)
//   - `Candidate` — sync candidate (time_sym, freq_bin, score)

pub mod costas;
pub mod ft4_sync;
pub mod ft8_sync;
pub mod psk31_sync;
pub mod waterfall;

pub use costas::Candidate;
pub use ft4_sync::{ft4_sync, Ft4SyncResult};
pub use ft8_sync::{ft8_sync, Ft8SyncResult};
pub use psk31_sync::{psk31_sync, Psk31SyncResult};
pub use waterfall::{Waterfall, compute_waterfall};