mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 23:02:30 +00:00
Add module-level documentation for embassy::time
This commit is contained in:
parent
3e4e292cb7
commit
cf1323fb67
@ -1,3 +1,6 @@
|
||||
/// Time abstractions
|
||||
/// To use these abstractions, first call `set_clock` with an instance of an monotonic `Clock`.
|
||||
///
|
||||
mod duration;
|
||||
mod instant;
|
||||
mod traits;
|
||||
@ -14,10 +17,16 @@ pub const TICKS_PER_SECOND: u64 = 32768;
|
||||
|
||||
static mut CLOCK: Option<&'static dyn Clock> = None;
|
||||
|
||||
/// Sets the clock used for the timing abstractions
|
||||
///
|
||||
/// Safety: Sets a mutable global.
|
||||
pub unsafe fn set_clock(clock: &'static dyn Clock) {
|
||||
CLOCK = Some(clock);
|
||||
}
|
||||
|
||||
/// Return the current timestamp in ticks.
|
||||
/// This is guaranteed to be monotonic, i.e. a call to now() will always return
|
||||
/// a greater or equal value than earler calls.
|
||||
pub(crate) fn now() -> u64 {
|
||||
unsafe { unwrap!(CLOCK, "No clock set").now() }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user