voracious 0.4.1

VOR signal decoder for aviation navigation
Documentation
1
2
3
4
5
6
7
8
9
10
//! I/Q source handling for navigation signals
//!
//! This module provides unified input handling for both file and live device sources,
//! with integrated VOR and ILS Localizer demodulation and signal quality analysis.

pub mod ils_loc;
pub mod vor;

pub use ils_loc::IlsLocalizerSource;
pub use vor::VorSource;