pub trait UART0Ext {
    fn serial(self, tdx: Gpio1<UART>, rxd: Gpio3<UART>) -> UART0Serial;
}
Expand description

Extension trait for UART0 for easily creating UART0Serial instances.

Required Methods

Implementations on Foreign Types

Create a new UART0Serial instance using the provided pins.

Implementors