Trait cortex_m::prelude::_embedded_hal_blocking_delay_DelayMs[][src]

pub trait _embedded_hal_blocking_delay_DelayMs<UXX> {
    pub fn delay_ms(&mut self, ms: UXX);
}
[]

Millisecond 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_ms(&mut self, ms: UXX)[src][]

Pauses execution for ms milliseconds

Implementors

impl DelayMs<i32> for Delay[src][+]

impl DelayMs<u8> for Delay[src][+]

impl DelayMs<u16> for Delay[src][+]

impl DelayMs<u32> for Delay[src][+]