|
ChibiOS/RT
2.6.0 |
UART Driver code.
Definition in file uart.c.
Go to the source code of this file.
Functions | |
| void | uartInit (void) |
| UART Driver initialization. | |
| void | uartObjectInit (UARTDriver *uartp) |
Initializes the standard part of a UARTDriver structure. | |
| void | uartStart (UARTDriver *uartp, const UARTConfig *config) |
| Configures and activates the UART peripheral. | |
| void | uartStop (UARTDriver *uartp) |
| Deactivates the UART peripheral. | |
| void | uartStartSend (UARTDriver *uartp, size_t n, const void *txbuf) |
| Starts a transmission on the UART peripheral. | |
| void | uartStartSendI (UARTDriver *uartp, size_t n, const void *txbuf) |
| Starts a transmission on the UART peripheral. | |
| size_t | uartStopSend (UARTDriver *uartp) |
| Stops any ongoing transmission. | |
| size_t | uartStopSendI (UARTDriver *uartp) |
| Stops any ongoing transmission. | |
| void | uartStartReceive (UARTDriver *uartp, size_t n, void *rxbuf) |
| Starts a receive operation on the UART peripheral. | |
| void | uartStartReceiveI (UARTDriver *uartp, size_t n, void *rxbuf) |
| Starts a receive operation on the UART peripheral. | |
| size_t | uartStopReceive (UARTDriver *uartp) |
| Stops any ongoing receive operation. | |
| size_t | uartStopReceiveI (UARTDriver *uartp) |
| Stops any ongoing receive operation. | |