pub trait UartData<'a>: Transmit<'a> + Receive<'a> { }
Expand description
Trait for sending and receiving on UART.
This includes transmitting data and receiving data.
Capsules can use this to require a UART device that can both send and receive but do not need the ability to configure the bus settings.