Trait UartAdvanced

Source
pub trait UartAdvanced<'a>:
    Configure
    + Transmit<'a>
    + ReceiveAdvanced<'a> { }
Expand description

Trait for a full advanced UART device.

This includes configuring the bus, transmitting data, and the advanced reception operations.

Implementors§

Source§

impl<'a, T: Configure + Transmit<'a> + ReceiveAdvanced<'a>> UartAdvanced<'a> for T