orion-sdr 0.0.29

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

//! orion-sdr — toplevel exports

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

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