What is a serial port communication protocol? There are several common ones
There are several serial communication protocols
Before talking about serial port communication protocol, we need to know that serial communication protocols include internal communication system protocols and inter-system protocols. So let’s explain them one by one below.
Internal system protocols: Common ones include CAN protocol, I2C protocol, and SPI protocol
Inter-system protocols: Common ones include USART protocol, UART protocol, and USB protocol.
What is an internal system protocol? An internal system protocol is used to communicate between two devices on the board. While using these in-system protocols we will extend the peripherals of the microcontroller without using the in-system protocols. Using in-system protocols increases circuit complexity and power consumption. Using in-system protocols, circuit complexity and power consumption are reduced, costs are reduced, and access to data is very secure.
What is an intersystem protocol? An intersystem protocol used to communicate between two different devices. Just like the communication between the computer and the microcontroller kit. Communication takes place via the internal bus system.
Protocolo CAN
CAN significa Controller Area Network (rede de controlo). Trata-se de um protocolo de comunicação em série. Requer duas linhas CAN high (H) e CAN low (H-). Foi desenvolvido pela Robert Bosh Corporation em 1985 para utilização em redes automóveis. Baseia-se num protocolo de transporte orientado para as mensagens.
The CAN protocol is commonly used in electronic networks in automobiles, aircraft and medical systems. Common products include Can to Ethernet equipment USR-CANET200.
The 1970s was the era when car manufacturers started introducing new features such as anti-lock braking, air conditioning, gear control, centrally operated door locks, etc. These features ensure additional wiring and complex designs, increasing costs and risks. To overcome these problems, Robert Bosch introduced the CAN protocol in the 1980s. This serial port communication protocol was further standardized as ISO11898 in 1993. It is the CAN protocol that has completely transformed communication between advanced sensors.
Protocolo I2C
The I2C bus was developed by Philips Semiconductors. Its original purpose was to provide an easy way to connect the CPU to peripheral chips. Peripherals in embedded systems are often connected to the microcontroller as memory mapped devices. I2C requires only two wires to connect all peripherals to the microcontroller. These active lines, called SDA and SCL, are bidirectional. The SDA line is the serial data line, while the SCA line is the serial clock line.
I2C stands for Inter Integrated Circuit. I2C requires only two wires to connect all peripherals to the microcontroller. I2C requires only two wires, SDA (serial data line) and SCL (serial clock line), to transfer information between devices. It is the master of the slave communication protocol. Each slave has a unique address. The master device sends the address and read/write flags of the target slave device. This address matches any slave device that is turned on, the remaining slave devices are in disabled mode. Once the addresses match, communication takes place between the master and that slave, and data is sent and received. The transmitter sends 8 bits of data and the receiver replies with 1 bit of confirmation. After the communication is completed, the master station issues a stop condition.
Protocolo SPI
SPI stands for Serial Peripheral Interface. It is one of the serial port communication protocol developed by Motorola. Sometimes the SPI protocol is also called a 4-wire protocol. It requires four wires MOSI, MISO, SS and SCLK.SPI protocol is used to communicate master and slave devices. The host first configures the clock with frequency. The host then selects a specific slave device to communicate with via a pull-tab button. Select that specific device and start communication between the master and that specific slave. The master selects only one slave at a time. It is a full-duplex communication protocol. In the case of bit transfers, it is not limited to 8-bit words.
Protocolo USART
USART significa Universal Synchronous and Asynchronous Transmitter and Receiver (transmissor e recetor universal síncrono e assíncrono). Trata-se de uma comunicação em série com protocolo de dois fios. As linhas de sinal do cabo de dados são designadas por Rx e TX. Este protocolo é utilizado para enviar e receber dados byte a byte, juntamente com impulsos de relógio. Este é um protocolo full-duplex, o que significa que os dados são enviados e recebidos simultaneamente a diferentes velocidades da placa. Diferentes dispositivos comunicam com o microcontrolador através deste protocolo. Por exemplo, telecomunicações.
Protocolo UART
UART stands for Universal Asynchronous Transmitter and Receiver. The UART protocol is a serial communication with two wired protocols. Data cable signal lines are labeled Rx and Tx. Serial communication is commonly used to send and receive signals. It is transmitted and communicated with the serial port to receive data without pulse-like. The UART receives the data bytes and sends the individual bits sequentially.
USAT protocol is usually used as a peripheral of MCU in embedded systems; generally speaking, the TTL level is directly derived from the chip pin; and the RS232 level may be connected to the conversion chip in the middle.For details, please see: Standards for Serial Communication
A UART é um protocolo half-duplex. Half-duplex significa ter a capacidade de transmitir e receber dados, mas não simultaneamente. A maioria dos controladores tem uma UART de hardware na placa. Ela usa uma linha de dados para enviar e receber dados. Tem um bit de arranque, dados de 8 bits e um bit de paragem, indicando que os dados de 8 bits são transmitidos de alto para baixo. Por exemplo: correio eletrónico, mensagens de texto, walkie-talkies, servidor de série de equipamento de transmissão IoT industrial.
Protocolo USB
USB stands for Universal Serial Bus. Again, it is a two-wire protocol for serial communication. Data cable signal wires are marked D and D-. This serial port communication protocol is used to communicate with system peripherals. The USB protocol is used to send and receive data serially to the host and peripheral devices. USB communication requires driver software based on system capabilities. USB devices can transmit data on the host without any requested bus. Now, most devices today use this technology to communicate with the USB protocol. Use USB to communicate with the ARM controller like a computer. USB transfers data in different modes. The first is a slow mode from 10 kbps to 100 kbps; the second is a full speed mode from 500kbps to 10mbps and a high speed mode from 25mbps to 400Mbps. The maximum USB cable length is 4 meters.
For example: hubs, switches, mice, keyboards, pen drives.
Tag: serial communication protocol