From 209b92219e1d74a6803e43956d152678c50784ba Mon Sep 17 00:00:00 2001 From: Liodeus Date: Sun, 9 Oct 2022 16:38:53 +0200 Subject: [PATCH] Update uart.md Rework the documentation, added some images, logic analyzer part, warnings, correct some typos. --- docs/debug-interfaces/uart.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/debug-interfaces/uart.md b/docs/debug-interfaces/uart.md index 3526919..338c491 100644 --- a/docs/debug-interfaces/uart.md +++ b/docs/debug-interfaces/uart.md @@ -14,7 +14,6 @@ * [Examples](#examples) ## What is it ? - UART stands for Universal asynchronous receiver transmitter. Used for serial communications over a computer or peripheral device serial port. UART peripherals are commonly integrated in many embedded devices. UART communication makes use of baud rate to maintain synchronism between two devices. The baud rate is the rate at which information is transferred in a communication channel. @@ -26,7 +25,6 @@ Generally, the line is held high (at a logical 1 value) while UART is in idle st We call the most common configuration **8N1**: eight data bits, no parity, and 1 stop bit. ## Identifying UART ports - A UART pinout has **four** ports: * **TX** (Transmit) * **RX** (Receive)