[][src]Struct freertos_rs::TaskDelayPeriodic

pub struct TaskDelayPeriodic { /* fields omitted */ }

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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]