orion-sdr 0.0.25

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
//! 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};
  
#[cfg(test)]
mod tests;