sbi_spec/
time.rs

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