Clarified wording

This commit is contained in:
BlackMark 2020-02-21 18:00:38 +01:00
parent b758b9a090
commit 5f083e6fe9

View File

@ -22,7 +22,7 @@ The ADC module provides an easy way to configure the mode of operation and will
### UART
The UART module provides a general interface for serial communication which is decoupled from the actual backend driver. The backend driver might be UART0 (or UART1 if available), or it might be a software UART driver on chips (pins) that don't have hardware UART support.
The UART module provides a general interface for serial communication which is decoupled from the actual backend driver. The backend driver might be UART0 (or UART1 if available), or it might be a user provided software UART driver on chips (pins) that don't have hardware UART support.
The backend might also be interrupt driven and use some configurable receive/transmit buffer, or be blocking and not need any buffers. The buffers should only be allocated in interrupt driven mode and also be compile-time allocated.