leodos_protocols/misc/time/mod.rs
1//! CCSDS Time Code Formats (CCSDS 301.0-B-4)
2//!
3//! Implements two CCSDS time formats:
4//! - **CUC** (Unsegmented Code): binary seconds + fractional seconds
5//! - **CDS** (Day Segmented): day count + milliseconds of day
6
7/// CCSDS Unsegmented Code (CUC) time format.
8pub mod cuc;
9/// CCSDS Day Segmented (CDS) time format.
10pub mod cds;
11
12pub use cds::CdsTime;
13pub use cuc::CucTime;