[][src]Struct dwm1001::DW_RST

pub struct DW_RST(_);

The DW_RST pin (P0.24 on the nRF52)

Can be used to externally reset the DW1000.

Implementations

impl DW_RST[src]

pub fn new<Mode>(p0_24: P0_24<Mode>) -> Self[src]

Create a new instance of the DW_RST pin

pub fn reset_dw1000<D>(&mut self, delay: &mut D) where
    D: DelayMs<u32>, 
[src]

Externally reset the DW1000 using its RSTn pin

The implementation of this method needs to wait a few times until the DW1000 is properly reset. To do that, it requires an implementation of DelayMs from the embedded-hal crate, which the user must supply.

See nrf52832_hal::Delay for such an implementation.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.