how to use UART in circuit design?

MrChips

Joined Oct 2, 2009
30,807
UART is still being used on micros because:

1) it is easy to implement in hardware
2) historical and legacy reasons, backward compatibility.

USB needs much more than hardware to implement. It requires a lot of software overhead to implement the USB protocol. You will not find USB in low end MCUs.

UART and USB are two completely different things.

There is such a thing as a UART-to-USB bridge, such as Silicon Labs CP2102 which can be used to connect an MCU with UART to a host computer USB.
However, the PC sees the MCU as a UART COM port, not a USB device.
 

MrChips

Joined Oct 2, 2009
30,807
UART is still being used on micros because:

1) it is easy to implement in hardware
2) historical and legacy reasons, backward compatibility.

USB needs much more than hardware to implement. It requires a lot of software overhead to implement the USB protocol. You will not find USB in low end MCUs.

UART and USB are two completely different things.

There is such a thing as a UART-to-USB bridge, such as Silicon Labs CP2102 which can be used to connect an MCU with UART to a host computer USB.
However, the PC sees the MCU as a UART COM port, not a USB device.
 

cmartinez

Joined Jan 17, 2007
8,253
In case you want to know, the best chipset for UART to USB conversion is manufactured by FTDI, its drivers are far better and more reliable than prolific, for instance.
 

Thread Starter

kai hiwatari

Joined Feb 20, 2015
3
UART is still being used on micros because:

1) it is easy to implement in hardware
2) historical and legacy reasons, backward compatibility.

USB needs much more than hardware to implement. It requires a lot of software overhead to implement the USB protocol. You will not find USB in low end MCUs.

UART and USB are two completely different things.

There is such a thing as a UART-to-USB bridge, such as Silicon Labs CP2102 which can be used to connect an MCU with UART to a host computer USB.
However, the PC sees the MCU as a UART COM port, not a USB device.
thanks, it helped me alot
 
Top