Trait nrf52810_hal::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

Loading content...

Implementations on Foreign Types

impl DelayMs<u32> for Delay

impl DelayMs<i32> for Delay

impl DelayMs<u16> for Delay

impl DelayMs<u8> for Delay

Loading content...

Implementors

impl DelayMs<u8> for nrf52810_hal::Delay[src]

impl DelayMs<u16> for nrf52810_hal::Delay[src]

impl DelayMs<u32> for nrf52810_hal::Delay[src]

impl<T, U> DelayMs<u8> for Timer<T, U> where
    T: Instance
[src]

impl<T, U> DelayMs<u16> for Timer<T, U> where
    T: Instance
[src]

impl<T, U> DelayMs<u32> for Timer<T, U> where
    T: Instance
[src]

Loading content...