Skip to main content

Posts

Showing posts with the label Chip One Stop

The Secret Guide To Common Chip Peripheral Literacy

  1. UART   UART is called Universal Asynchronous Receiver-Transmitter, which is usually used for a communication connection between chips and external devices. When we say serial port in embedded, it usually means UART port. Embedded systems often use the UART port to connect to the COM port of the host PC (or to connect to the USB port of the host after converting the UART to USB) for debugging, so that the printf function in the embedded system can be redirected to print to the display of the host.   The data transmission format of UART is as follows.   During the transmission process, the UART sender sends out the byte data bit by bit in serial, and the receiver receives the data bit by bit and then reorganizes it into byte data. the UART transmission rate is measured by Baud Rate (Baud Rate).   2. I2C   I2C is a simple, bi-directional two-wire synchronous serial bus developed by Philips, which requires only two bus lines: a serial data line SDA and a serial clock line SCL, and sup