[−][src]Struct freertos_rust::TaskDelayPeriodic
Periodic delay timer.
Use inside a polling loop, for example: the loop polls this instance every second.
The method should_run will return true once 30 seconds or more has elapsed
and it will then reset the timer for that period.
Methods
impl TaskDelayPeriodic[src]
pub fn new<D: DurationTicks>(period: D) -> TaskDelayPeriodic[src]
Create a new timer with the set period.
pub fn should_run(&mut self) -> bool[src]
Has the set period passed? If it has, resets the internal timer.
pub fn set_period<D: DurationTicks>(&mut self, period: D)[src]
Set a new delay period
pub fn reset(&mut self)[src]
Reset the internal timer to zero.
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,