Embedded Development – Detailed Explanation and Application of CAN Protocol

Embedded Development - Detailed Explanation and Application of CAN Protocol

Click the blue text Follow us Bit Time and Bit Synchronization in CAN Communication In CAN communication, Bit Time refers to the time required to transmit one bit on the bus, which is the reciprocal of the CAN bus communication rate (baud rate). CAN communication ensures reliable data transmission by sampling and synchronizing the signal … Read more

UART Application Layer Protocol Design

UART Application Layer Protocol Design

The serial port enables reliable communication between two terminal devices, functioning as the transport layer in this process. This article focuses on the data protocol. Similar Scenarios Hey! Hey! This is Dong Guai! Please respond! Please respond! over! Such dialogues are often seen in war-themed films when calling teammates through walkie-talkies or related wireless devices. … Read more

Communication Protocol Design Principles for Embedded Devices

Communication Protocol Design Principles for Embedded Devices

Embedded devices need to set parameters during operation, which is often accomplished by a PC. A communication protocol must be designed for both parties, with three representative protocols as follows: As can be seen from the table above, embedded devices generally have limited memory and computational performance, so fixed binary is the preferred communication protocol. … Read more

Understanding the CANopen Communication Protocol

Understanding the CANopen Communication Protocol

‖ System Learning Life is like a marathon; sometimes you need to take a break to go fishing to go further. Hey! It’s time for a break again. A couple of days ago, I shared about Understanding a Communication Protocol: PROFINET Understanding a Communication Protocol: PROFIBUS Today, let’s learn about the new CANopen communication protocol. … Read more

Detailed Explanation of SPI Protocol (Based on ZhiXin Z20K11X)

Detailed Explanation of SPI Protocol (Based on ZhiXin Z20K11X)

Click the blue text Follow us 1. Introduction 1. Concept The SPI (Serial Peripheral Interface) bus protocol is a full-duplex synchronous serial bus communication protocol used for data transmission between integrated circuits. The SPI bus typically consists of one master device and multiple slave devices, each slave device has a separate chip select signal, and … Read more

Detailed Explanation of IIC Protocol Based on Z20k11X

Detailed Explanation of IIC Protocol Based on Z20k11X

Click the Blue Text Follow Us 1. Introduction 1. Concept The IIC protocol (I²C, or Inter-Integrated Circuit) is a widely used low-speed serial half-duplex communication protocol for communication between integrated circuits, allowing only unidirectional communication at any one time. It was invented by Philips in the 1980s and is widely used for data transmission between … Read more

Flexible Communication Protocols in Embedded Software

Flexible Communication Protocols in Embedded Software

In embedded development, it is common to define custom protocol formats, such as for communication between boards or between client and server. There can be many types of custom protocol formats. In this article, we will introduce a commonly used, practical, and highly flexible protocol format—ITLV format. 01 【What Is ITLV Format?】 You may have … Read more

Communication Protocols in Microcontrollers and Embedded Systems

Communication Protocols in Microcontrollers and Embedded Systems

▼Click the business card below to follow our public account for more exciting content▼ A microcontroller is a microcomputer system that integrates a processor, memory, and input/output (I/O) interfaces, widely used in embedded systems. An embedded system is a computer system designed for specific tasks, typically embedded in other devices or systems to achieve control, … Read more

Characteristics of Communication Protocols for Embedded Devices

Characteristics of Communication Protocols for Embedded Devices

Communication protocols designed for embedded devices typically fall into three categories: Considering the limited memory and computing power of embedded devices, fixed binary is the preferred communication protocol. The following analyzes the characteristics that embedded device communication protocols should have. Simplicity Ensuring that the protocol is a simple solution is crucial; complexity often leads to … Read more

What to Consider for Embedded Communication Protocols?

What to Consider for Embedded Communication Protocols?

Embedded development often requires communication in many scenarios, making communication protocols essential. The three representative communication protocols are as follows: As seen in the table above, embedded devices generally have limited memory and computational performance, so fixed binary is the preferred communication protocol. 1. Simplicity Ensure that the protocol is a simple solution; obscure and … Read more