orion-sdr 0.0.13

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
//! orion-sdr — toplevel exports
 
pub mod core;
pub mod dsp;
pub mod demodulate;
pub mod modulate;
pub mod util;
pub mod python;

pub use core::{Block, WorkReport, AudioToIqChain, IqToAudioChain};
  
#[cfg(test)]
mod tests;