UART (Universal Asynchronous Receiver-Transmitter)
UART is a simple, asynchronous serial communication protocol used for full-duplex communication between two devices.
Key Features:
- Asynchronous: No clock signal – relies on pre-agreed baud rate (e.g., 9600, 115200 bps).
- Uses two main lines: TX (Transmit) and RX (Receive).
- Configurable baud rate (e.g., 9600, 115200 bps).
- Error detection: Parity bit (optional).
- Flow control: Hardware (RTS/CTS) or software (XON/XOFF).
- No addressing – only two devices per bus.
Data Frame Structure
- Start bit (1 bit, logic low).
- Data bits (5–9 bits, LSB-first).
- Parity bit (optional, even/odd/none).
- Stop bit(s) (1 or 2 bits, logic high).
Start Bit | Data Bits (5-9) | Parity Bit (Optional) | Stop Bit (1-2)
Points to Remember
- If the baud rate is set as 115200, then the recever will expect stop bit that is high state for 1 baud period(generally).
Usage in Linux Kernel:
#include <linux/serial_core.h>
struct uart_port *port;
uart_write(port, "Hello", 5);
Use Cases
- Debugging consoles (e.g., Linux kernel
printk
via UART). - GPS modules, Bluetooth/Wi-Fi modules.