pub struct SleepingDelay<TIM> { /* private fields */ }
Expand description

Delay and sleep while we do (WFI) using a timer

Implementations§

source§

impl<TIM> SleepingDelay<TIM>where TIM: InterruptDrivenTimer,

source

pub fn new( timer: TIM, interrupt_fired: &'static AtomicBool ) -> SleepingDelay<TIM>where TIM: InterruptDrivenTimer,

Initializes a new SleepingDelay struct

source

pub fn free(self) -> TIM

Releases the timer resource

Trait Implementations§

source§

impl<TIM, TYPE> DelayMs<TYPE> for SleepingDelay<TIM>where TIM: InterruptDrivenTimer, TYPE: Into<u32>,

source§

fn delay_ms(&mut self, ms: TYPE)

Pauses execution for ms milliseconds
source§

impl<TIM, TYPE> DelayUs<TYPE> for SleepingDelay<TIM>where TIM: InterruptDrivenTimer, TYPE: Into<u32>,

source§

fn delay_us(&mut self, us: TYPE)

Pauses execution for us microseconds

Auto Trait Implementations§

§

impl<TIM> RefUnwindSafe for SleepingDelay<TIM>where TIM: RefUnwindSafe,

§

impl<TIM> Send for SleepingDelay<TIM>where TIM: Send,

§

impl<TIM> Sync for SleepingDelay<TIM>where TIM: Sync,

§

impl<TIM> Unpin for SleepingDelay<TIM>where TIM: Unpin,

§

impl<TIM> UnwindSafe for SleepingDelay<TIM>where TIM: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.