leodos_protocols/datalink/link/mod.rs
1/// Asymmetric link combining separate sender and receiver halves.
2pub mod asymmetric;
3/// CCSDS File Delivery Service link support.
4#[cfg(feature = "cfs")]
5pub mod cfs;
6/// Frame + coding pipeline (DatalinkWriter/DatalinkReader).
7pub mod framed;
8/// In-process bidirectional channel for testing.
9pub mod local;
10/// Telecommand link channels (re-exports from framed + TC framing).
11pub mod tc;
12/// Telemetry link channels (re-exports from framed + TM framing).
13pub mod tm;