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§
Sourcefn builder(self, tx: PC10, rx: PC11) -> Uart4Builder
fn builder(self, tx: PC10, rx: PC11) -> Uart4Builder
create uart4 builder
Sourcefn tx_builder(self, tx: PC10) -> Uart4TxBuilder
fn tx_builder(self, tx: PC10) -> Uart4TxBuilder
create uart4 tx builder
Sourcefn rx_builder(self, rx: PC11) -> Uart4RxBuilder
fn rx_builder(self, rx: PC11) -> Uart4RxBuilder
create uart4 rx builder
Implementations on Foreign Types§
Source§impl Uart4Trait for UART4
uart4 support uart3 trait
impl Uart4Trait for UART4
uart4 support uart3 trait