orion-sdr 0.0.62

Composable SDR/DSP block library targeting HF-to-EHF: analog and single-carrier digital modes, FT8/FT4, PSK31, OFDM/COFDM, and DVB-T/NB-DVB-T, with Python bindings.
Documentation
// Copyright (c) 2025-2026 G & R Associates LLC
// SPDX-License-Identifier: MIT OR Apache-2.0

//! orion-sdr — toplevel exports

pub mod codec;
pub mod core;
pub mod demodulate;
pub mod dsp;
pub mod fec;
pub mod message;
pub mod modulate;
pub mod multicarrier;
#[cfg(feature = "extension-module")]
pub mod python;
pub mod sync;
pub mod util;
pub mod waveform;

pub use core::{AudioToIqChain, Block, IqToAudioChain, IqToIqChain, WorkReport};