How to Configure CRC Parameters in IAR

How to Configure CRC Parameters in IAR

Introduction All STM32 series products come with a CRC peripheral that provides hardware support for CRC calculations, saving code space for applications. The CRC checksum can be used to verify the correctness of data during transmission and can also be used for integrity checks during data storage. In IEC60335, CRC checks are accepted for verifying … Read more

How to Install IAR Embedded Workbench for ARM 8.32.1

How to Install IAR Embedded Workbench for ARM 8.32.1

IAR for ARM is a top-tier integrated development environment, fully known as “IAR Embedded Workbench for ARM”. It is developed by the world-renowned Swedish company IAR Systems, which specializes in embedded systems development tools and services. Founded in 1983 and headquartered in Uppsala, Sweden, the company went public on NASDAQ OMX Stockholm on January 4, … Read more

Design of Flash Loader in IAR Environment

Design of Flash Loader in IAR Environment

Table of Contents 1. Why Flash Loader 2. Flash Loader Design Details 2.1 Simple Code Framework 2.2 Fascinating Macro Usage 2.3 Key Configuration Files 3. dmac and mac Files 4. Summary To develop domestically produced automotive chips, IAR is an essential integrated tool for compilation and debugging. The historical background is not elaborated here; today, … Read more

Why Is Keil More Popular Than IAR?

Why Is Keil More Popular Than IAR?

01 Introduction When it comes to Keil and IAR, you might think their integrated development environment interfaces are quite outdated and not user-friendly. But here’s a fact: whether you are a beginner in microcontroller programming or an experienced developer, the usage of Keil and IAR is significantly higher compared to other tools, and it’s not … Read more

Free Trial of BSP Development Course: Hands-On Learning

Free Trial of BSP Development Course: Hands-On Learning

The course is divided into two parts: Phase One and Phase Two. Phase One focuses on the basic operations of the development board (suitable for students with relatively weak foundations). Based on the SDK source code provided by the manufacturer, it offers hands-on basic usage explanations using the 100ask T113 development board. Emphasis is placed … Read more

BSP Development Course Upgrade with T113i-DevKit

BSP Development Course Upgrade with T113i-DevKit

First Phase Key Explanation Basic operations of the development board (suitable for students with weak fundamentals).Hands-on basic usage explanation based on the SDK source code provided by the manufacturer, using the 100ask T113 development board.Focus on foundational entry: from hardware wiring of the development board, powering up to the composition of the embedded Linux system, … Read more

Backside Power Delivery Technology (BSPDN)

Backside Power Delivery Technology (BSPDN)

Backside Power Delivery Technology (BSPDN) Backside Power Delivery Technology requires separation of signals and power, placing the signal structure and power structure from wafer fabrication on the front and back of the wafer. Illustration of Mainstream Chip Structure and Backside Power Chip Structure Mainstream Chip Structure Traditionally, the power and signal structures in chips are … Read more

STM32 BSP LPSPI Library Implementation

STM32 BSP LPSPI Library Implementation

Previously, I used the RT1052 development board, but now STM32 is obviously more popular among everyone. Therefore, I am providing this C file for everyone to benefit from the driver I wrote earlier. #include "bsp_lpspi.h" SPI_HandleTypeDef SpiHandle; void Spi_delay(uint32_t count){ volatile uint32_t i = 0; for (i = 0; i < count; ++i) { __asm("NOP"); … Read more

Linux BSP Practical Course: Virtual Network Device Bridge

Linux BSP Practical Course: Virtual Network Device Bridge

What is a bridge? Creating a bridge Connecting the bridge and veth devices Assigning an IP to the bridge Adding a physical network card to the bridge Does the bridge need to be configured with an IP? Common scenarios for bridges Virtual Machines Docker What is a bridge? First, a bridge is a virtual network … Read more

CANopen Protocol Stack Tutorial: Key Concepts and Practical Insights

CANopen Protocol Stack Tutorial: Key Concepts and Practical Insights

This video tutorial shares knowledge related to the CANopen protocol stack, covering a lot of content. Additionally, the H7-TOOL CANopen parsing function has been officially released. Video Tutorial (Set to 1080p for best view): Video Outline:References:1. CANopen example routine templates and dictionary tools based on V7, using the CANFD2 interface. Next video will share V5, … Read more