[][src]Trait bl602_hal::serial::Pins

pub unsafe trait Pins<UART> {
    const HAS_TX: bool;
    const HAS_RX: bool;
    const HAS_RTS: bool;
    const HAS_CTS: bool;
}

Serial pins - DO NOT IMPLEMENT THIS TRAIT

Associated Constants

const HAS_TX: bool

const HAS_RX: bool

const HAS_RTS: bool

const HAS_CTS: bool

Loading content...

Implementors

impl<UART, TX, RX> Pins<UART> for (TX, RX) where
    TX: TxPin<UART>,
    RX: RxPin<UART>, 
[src]

impl<UART, TX, RX, RTS, CTS> Pins<UART> for (TX, RX, RTS, CTS) where
    TX: TxPin<UART>,
    RX: RxPin<UART>,
    RTS: RxPin<UART>,
    CTS: RxPin<UART>, 
[src]

Loading content...