pub trait Tasks {
// Required methods
fn cnt_start(&self) -> Task;
fn cnt_stop(&self) -> Task;
fn cnt_reload(&self) -> Task;
fn cnt_cap(&self) -> Task;
fn alarm_start(&self) -> Task;
}
Available on crate feature
unstable
only.Expand description
General purpose timer ETM tasks
Required Methods§
Sourcefn cnt_reload(&self) -> Task
fn cnt_reload(&self) -> Task
ETM task to stop the counter
Sourcefn alarm_start(&self) -> Task
fn alarm_start(&self) -> Task
ETM task to load the counter with the value stored when the last
now()
was called