[−][src]Trait esp32_hal::prelude::_embedded_hal_blocking_delay_DelayUs
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
fn delay_us(&mut self, us: UXX)
Pauses execution for us microseconds
Implementors
impl<UXX: Into<u32>> DelayUs<UXX> for Delay[src]
Delay in us
*Note: Maximum duration is 2e32-1 ns ~ 4.29s *