Introduction and Features of CAN Bus – Part 1

Introduction and Features of CAN Bus - Part 1

Examples of CAN Applications Bus Topology Diagram The CAN controller determines the bus level based on the potential difference on the two wires. The bus level is divided into dominant and recessive levels, one of which must be present. The sender sends messages to the receiver by changing the bus level. Connection diagram of CAN … Read more

Application of CAN Bus in CT

Application of CAN Bus in CT

Overview of CAN CAN is an abbreviation for Controller Area Network (hereinafter referred to as CAN). CAN belongs to the category of field buses, and it is a serial communication network that effectively supports distributed control or real-time control, known as the computer local area network in the field of automation. The CAN bus is … Read more

In-Depth Analysis of CAN Bus Technology

In-Depth Analysis of CAN Bus Technology

CAN, short for “Controller Area Network”, is one of the most widely used field buses internationally. Initially, CAN was designed for microcontroller communication in automotive environments, exchanging information between various electronic control units (ECUs) in vehicles, forming an automotive electronic control network. For example, the engine management system, transmission controller, instrument equipment, and electronic backbone … Read more

Introduction to CAN Bus Basics for In-Vehicle Testing

Introduction to CAN Bus Basics for In-Vehicle Testing

When learning about in-vehicle testing, how can we not understand CAN basics? Today, I have organized a detailed note for everyone, so let’s follow along with Songqin! Understanding CAN 01 What is CAN Bus? CAN stands for Controller Area Network, which is an internationally standardized serial communication protocol by ISO. In simple terms, the CAN … Read more

Communication Interface Technology and Servo Operation Principles

Communication Interface Technology and Servo Operation Principles

The RS232 type DB9 interface, which used to be found on older computers, can be connected to modems. In MCU51 microcontroller projects, this UART interface is generally used, with serial port rates of 115200bps, 57600bps, etc. Later, USB to serial converters like PL2302 and FT232 emerged, with rates reaching up to 921600bps, which is considered … Read more

Detailed Analysis of SPI Communication Between FPGA and STM32 (Part 1)

Detailed Analysis of SPI Communication Between FPGA and STM32 (Part 1)

Win a Backpack How Difficult Is It? Give It a Try! →_→ Long Press Recognition [Topic]: Detailed Analysis of SPI Communication Between FPGA and STM32 (Part 1) [Author]: LinCoding [Date]: 2016.11.26 Yesterday, I thoroughly reviewed SPI again. I felt that what I learned about SPI when studying STM32 was just the surface; this time, while … Read more

How to Use SPI? Understand Timing and Use It Freely

How to Use SPI? Understand Timing and Use It Freely

1. What is SPI? SPI stands for Serial Peripheral Interface, a synchronous serial interface technology introduced by Motorola. It is a <span>high-speed</span>, <span>full-duplex</span>, and <span>synchronous</span> communication bus. 2. Advantages of SPI Supports full-duplex communication, simple data transmission rate. 3. Disadvantages There is no specified flow control and no acknowledgment mechanism to confirm whether data has … Read more

Understanding the SPI Communication Interface in Microcontrollers

Understanding the SPI Communication Interface in Microcontrollers

UART, I2C, and SPI are the three most commonly used communication protocols in microcontroller systems. In this lesson, we will learn about the remaining SPI communication protocol. SPI stands for Serial Peripheral Interface. As the name suggests, it is a serial interface for peripheral devices. SPI is a high-speed, full-duplex, synchronous communication bus that typically … Read more

Summary of Common Interfaces for ARM Microcontrollers

Summary of Common Interfaces for ARM Microcontrollers

1 I2C Bus The programming related to I2C mainly involves two situations: ARM chips with dedicated controllers and microcontroller chips without controllers. For ARM chips with controllers, operations are performed based on the data manual by setting the corresponding registers (control registers, status registers, etc.); however, for microcontroller chips without controllers, I2C protocol needs to … Read more

Understanding the I2C Bus

Understanding the I2C Bus

1. Overview The I2C bus is a very popular and powerful bus, commonly used for communication between one (or multiple) master devices and one or more slave devices. Figure 1 shows that various peripherals can share this bus, which only requires two wires to connect to the processor. This is one of the biggest advantages … Read more