pub trait UART1Ext {
    fn serial(self, txd: Gpio2<UART>) -> UART1Serial;
}
Expand description

Extension trait for UART1 for easily creating UART1Serial instances.

Note that UART1 is write-only.

Required Methods

Implementations on Foreign Types

Create a new write-only UART1Serial instance using the provided pin.

Implementors