Uart4Trait

Trait Uart4Trait 

Source
pub trait Uart4Trait {
    // Required methods
    fn builder(self, tx: PC10, rx: PC11) -> Uart4Builder;
    fn tx_builder(self, tx: PC10) -> Uart4TxBuilder;
    fn rx_builder(self, rx: PC11) -> Uart4RxBuilder;
}
Expand description

uart4 trait

Required Methods§

Source

fn builder(self, tx: PC10, rx: PC11) -> Uart4Builder

create uart4 builder

Source

fn tx_builder(self, tx: PC10) -> Uart4TxBuilder

create uart4 tx builder

Source

fn rx_builder(self, rx: PC11) -> Uart4RxBuilder

create uart4 rx builder

Implementations on Foreign Types§

Source§

impl Uart4Trait for UART4

uart4 support uart3 trait

Implementors§