Uart1Trait

Trait Uart1Trait 

Source
pub trait Uart1Trait {
    // Required methods
    fn builder(self, tx: Uart1Tx, rx: Uart1Rx) -> Uart1Builder;
    fn tx_builder(self, tx: Uart1Tx) -> Uart1TxBuilder;
    fn rx_builder(self, rx: Uart1Rx) -> Uart1RxBuilder;
}
Expand description

uart1 trait

Required Methods§

Source

fn builder(self, tx: Uart1Tx, rx: Uart1Rx) -> Uart1Builder

create uart1 builder

Source

fn tx_builder(self, tx: Uart1Tx) -> Uart1TxBuilder

create uart1 tx builder

Source

fn rx_builder(self, rx: Uart1Rx) -> Uart1RxBuilder

create uart1 rx builder

Implementations on Foreign Types§

Source§

impl Uart1Trait for USART1

usart1 support uart1 trait

Implementors§