[][src]Trait trellis_m4::prelude::_embedded_hal_blocking_delay_DelayUs

pub trait _embedded_hal_blocking_delay_DelayUs<UXX> {
    pub fn delay_us(&mut self, us: UXX);
}

Microsecond delay

UXX denotes the range type of the delay time. UXX can be u8, u16, etc. A single type can implement this trait for different types of UXX.

Required methods

pub fn delay_us(&mut self, us: UXX)[src]

Pauses execution for us microseconds

Loading content...

Implementors

impl DelayUs<u8> for Delay[src]

impl DelayUs<u16> for Delay[src]

impl DelayUs<u32> for Delay[src]

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

Loading content...