leodos_protocols/datalink/link/tc.rs
1//! Telecommand link channels.
2//!
3//! Type aliases over the generic [`channel`](super::channel)
4//! module, pre-configured with TC framing.
5
6pub use crate::datalink::framing::sdlp::tc::{
7 BypassFlag, ControlFlag, TcFrameReader, TcFrameWriter, TcFrameWriterConfig,
8};
9
10pub use super::framed::{
11 DatalinkError as TcError, DatalinkReader as TcLinkReader, DatalinkWriter as TcLinkWriter,
12};
13
14/// Configuration for a Telecommand link channel.
15pub type TcConfig = TcFrameWriterConfig;