leodos_protocols/datalink/framing/sdlp/mod.rs
1//! Space Data Link Protocols (SDLP).
2//!
3//! Spec: https://ccsds.org/Pubs/130x2g3.pdf
4
5/// Advanced Orbiting Systems (AOS) Transfer Frame protocol.
6pub mod aos;
7/// CCSDS Proximity-1 protocol.
8pub mod proximity1;
9/// Telecommand (TC) Transfer Frame protocol.
10pub mod tc;
11/// Telemetry (TM) Transfer Frame protocol.
12pub mod tm;
13
14/// Re-export of the Proximity-1 Version-3 Transfer Frame.
15pub use proximity1::Proximity1TransferFrame;
16/// Re-export of the Telecommand Transfer Frame.
17pub use tc::TelecommandTransferFrame;
18/// Re-export of the Telemetry Transfer Frame.
19pub use tm::TelemetryTransferFrame;