orion-sdr 0.0.69

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

// src/multicarrier/mod.rs

//! Waveform-agnostic FFT-domain primitives shared by OFDM and, in future
//! releases, other multicarrier waveforms (DFT-s-OFDM/SC-FDMA, OTFS).

pub mod config;
pub use config::{CarrierPlan, CarrierPlanError, SubcarrierRole};

pub mod cyclic_prefix;
pub use cyclic_prefix::{CyclicPrefixInsert, CyclicPrefixRemove};

pub mod fft;
pub use fft::{FftBlock, IfftBlock};

pub mod grid;
pub use grid::{CarrierGrid, GridExtract, GridMap};

pub mod symbol_fft;
pub use symbol_fft::SymbolFft;

pub mod symbol_window;
pub use symbol_window::SymbolWindow;

pub mod tx_lowpass;
pub use tx_lowpass::TxLowpass;