orion-sdr 0.0.12

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

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