atsamd_hal::sleeping_delay

Struct SleepingDelay

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

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

Implementations§

Source§

impl<TIM> SleepingDelay<TIM>

Source

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

Initializes a new SleepingDelay struct

Source

pub fn free(self) -> TIM

Releases the timer resource

Trait Implementations§

Source§

impl<TIM: InterruptDrivenTimer> DelayNs for SleepingDelay<TIM>

Source§

fn delay_ns(&mut self, ns: u32)

Pauses execution for at minimum ns nanoseconds. Pause can be longer if the implementation requires it due to precision/timing issues.
Source§

fn delay_us(&mut self, us: u32)

Pauses execution for at minimum us microseconds. Pause can be longer if the implementation requires it due to precision/timing issues.
Source§

fn delay_ms(&mut self, ms: u32)

Pauses execution for at minimum ms milliseconds. Pause can be longer if the implementation requires it due to precision/timing issues.
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> Freeze for SleepingDelay<TIM>
where TIM: Freeze,

§

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 T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.