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

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

Pauses execution for us microseconds

Implementors

impl DelayUs<u32> for Delay

impl DelayUs<u16> for Delay

impl DelayUs<u8> for Delay

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

impl DelayUs<u32> for Delay

impl DelayUs<i32> for Delay

impl DelayUs<u16> for Delay

impl DelayUs<u8> for Delay