orion-sdr 0.0.47

DSP/SDR block library targeting HF-to-EHF, satellites, and Python bindings. Roadmap inside.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2026 G & R Associates LLC
// SPDX-License-Identifier: MIT OR Apache-2.0

// src/waveform/mod.rs

//! Standard-specific waveform assemblies built from the generic `fec/`,
//! `multicarrier/`, `modulate/`, and `demodulate/` primitives. Unlike those
//! modules — which bake in no standard's numerology or coding — a `waveform`
//! submodule encodes one concrete standard's parameters (carrier maps, FEC
//! chains, scramblers) and produces ready-to-use configs.
//!
//! Currently: `dvb_t` (DVB-T / narrowband DVB-T for amateur DATV).

pub mod dvb_t;