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

  1. Start bit (1 bit, logic low).
  2. Data bits (5–9 bits, LSB-first).
  3. Parity bit (optional, even/odd/none).
  4. 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.