time.rs 365 B

12345678910111213
  1. //! Chapter 6. Timer Extension (EID #0x54494D45 "TIME").
  2. /// Extension ID for Timer extension.
  3. pub const EID_TIME: usize = crate::eid_from_str("TIME") as _;
  4. pub use fid::*;
  5. /// Declared in §6.2.
  6. mod fid {
  7. /// Function ID to program the clock for the next event after an absolute time.
  8. ///
  9. /// Declared in §6.1.
  10. pub const SET_TIMER: usize = 0;
  11. }