Struct riot_sys::ztimer_clock
source · #[repr(C)]pub struct ztimer_clock {
pub list: ztimer_base_t,
pub ops: *const ztimer_ops_t,
pub last: *mut ztimer_base_t,
pub adjust_set: u16,
pub adjust_sleep: u16,
pub max_value: u32,
pub lower_last: u32,
pub checkpoint: ztimer_now_t,
}
Expand description
@brief ztimer device structure
Fields§
§list: ztimer_base_t
< list of active timers
ops: *const ztimer_ops_t
< pointer to methods structure
last: *mut ztimer_base_t
< last timer in queue, for _is_set()
adjust_set: u16
< will be subtracted on every set()
adjust_sleep: u16
< will be subtracted on every sleep(), in addition to adjust_set
max_value: u32
< maximum relative timer value
lower_last: u32
< timer value at last now() call
checkpoint: ztimer_now_t
< cumulated time at last now() call
Trait Implementations§
source§impl Clone for ztimer_clock
impl Clone for ztimer_clock
source§fn clone(&self) -> ztimer_clock
fn clone(&self) -> ztimer_clock
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more