Module uart

Source
Expand description

Interface for UART communication.

Structs§

Parameters
UART parameters for configuring the bus.

Enums§

Error
The type of error encountered during UART transaction.
Parity
Parity bit configuration.
StopBits
Number of stop bits to send after each word.
Width
Number of bits in each word.

Traits§

Client
Trait for both receive and transmit callbacks.
Configure
Trait for configuring a UART.
Receive
Trait for receiving data via a UART bus.
ReceiveAdvanced
Trait with optional UART features that certain hardware may support.
ReceiveClient
Trait implemented by a UART receiver to receive callbacks when operations complete.
Transmit
Trait for sending data via a UART bus.
TransmitClient
Trait implemented by a UART transmitter to receive callbacks when operations complete.
Uart
Trait for a full UART device.
UartAdvanced
Trait for a full advanced UART device.
UartData
Trait for sending and receiving on UART.