Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between UART port and serial port in a computer?

Tags:

drivers

What is the difference, if any, between a UART port and a serial port in a computer?

like image 341
Renjith G Avatar asked Jun 10 '09 06:06

Renjith G


People also ask

Is UART same as serial port?

Simply, a UART is a serial port, but a serial port is not neccessary a UART. Serial port is a general term for anything serial, without further specification, while a UART defines a tranceiver for a specific asynchronus format.

What is a UART port used for?

A microprocessor UART can be used to interface to on-board peripherals such as Bluetooth and wireless transceivers, using a dedicated bridge.

Is UART serial?

UART was one of the earliest serial protocols. The once ubiquitous serial ports are almost always UART-based, and devices using RS-232 interfaces, external modems, etc. are common examples of where UART is used.

What is a serial port on a computer?

A serial port is an interface that allows a PC to transmit or receive data one bit at a time. It is one of the oldest types of interfaces and at one time was commonly used to connect printers and external modems to a PC.


1 Answers

UART is the abbreviation of Universal Asynchronous Receiver Transmitter, the name of the chip that enables the computer to communicate via a serial line (eg. RS-232, RS-485, RS-422).

The serial port is the RS-232 interface (internally connected to the UART) of the computer.

like image 199
chrmue Avatar answered Sep 29 '22 18:09

chrmue