Learning FreeRTOS Code (Part Four)

Learning FreeRTOS Code (Part Four)

•STM32 Cube Software Package Code Structure ARM has added a middleware layer, CMSIS_RTOS/cmsis_os.c, to ensure compatibility with various operating systems. Taking the STM32L4XX MCU software package as an example, other FreeRTOS release code files are located at this path: STM32Cube_FW_L4_V1.18.0\Middlewares\Third_Party\FreeRTOS\Source •vTask/xTask/eTask Online explanations state that both vTask and xTask are tasks within the FreeRTOS system, … Read more

What is the Difference Between FreeRTOS Hook Functions and Idle Tasks?

What is the Difference Between FreeRTOS Hook Functions and Idle Tasks?

Recently, I used FreeRTOS in a project and became curious about idle tasks and hook functions, so I wanted to understand what these two are used for. Here, I will share some of my insights.1. Idle TaskThe idle task is a task that is created by default after the FreeRTOS system starts, and it has … Read more

How FreeRTOS Manages Time: An Analysis of Tick, Interrupts, and Scheduling Mechanisms

How FreeRTOS Manages Time: An Analysis of Tick, Interrupts, and Scheduling Mechanisms

Table of Contents Background and Overview Source and Configuration of Tick Timer 2.1 <span>configTICK_RATE_HZ</span> 2.2 Hardware Timer & <span>vPortSetupTimerInterrupt</span> Processing Flow of Tick Interrupt 3.1 Interrupt Entry and FreeRTOS Hook 3.2 Time Statistics and Delay Management Time Slicing and Dynamic Priority Scheduling 4.1 Preemptive vs. Cooperative Kernel 4.2 Round Robin Scheduling Context Switching Mechanism 5.1 … Read more

Pycopy: The Lightweight Version of Embedded Systems!

Pycopy: The Lightweight Version of Embedded Systems!

▼ Click the card below to follow me ▲ Click the card above to follow me Pycopy: The Lightweight Version of Embedded Systems! Is the label “Python is not lightweight” a mistake? Believe it or not, Pycopy truly makes Python as compact as a pocket monster. Pycopy focuses on “lightness” and is specifically tailored for … Read more

Subforum: Embedded Technology Conference | Overview of Embedded Operating System Paper Abstracts

Subforum: Embedded Technology Conference | Overview of Embedded Operating System Paper Abstracts

Topic: Embedded Operating Systems 1. Embedded Multi-core Operating System for Intelligent Systems Prof. ALLAN HE, Embedded System Associations The rapid deployment of artificial intelligence technology at the edge and on-device is driven by large models, and the research and application of high-performance heterogeneous multi-core embedded processors and microcontroller chips are quickly becoming widespread in intelligent … Read more

The Battle for Automotive Chips: Recent Mergers and Innovations

The Battle for Automotive Chips: Recent Mergers and Innovations

With the development trends of automotive intelligence and electrification, automotive chips have become an important battleground in the global semiconductor industry. Recently, two domestic mergers have attracted widespread attention—Zhongying Electronics’ controlling shareholder is set to change to Zhinen Industrial Electronics, and Xinbang Intelligent has acquired the equity of Yindi Semiconductor; internationally, Arm has launched the … Read more

Siemens Partners with Arm: Accelerating Smart Vehicle Software Development

Siemens Partners with Arm: Accelerating Smart Vehicle Software Development

Abstract: Siemens Digital Industries Software deepens its collaboration with Arm, integrating Arm’s Zena CSS into its PAVE360 software to accelerate the development of Software Defined Vehicles (SDVs).At the Siemens Realize LIVE 2025 conference held last week in Detroit, Siemens Digital Industries Software announced the enhancement of its partnership with Arm, integrating Arm’s Zena Compute Subsystem … Read more

Embedded IDE Enables Automotive Software Development Without Hardware

Embedded IDE Enables Automotive Software Development Without Hardware

As is well known, embedded software development has many environmental dependencies, including dependencies at the software level: 1. Dependency on hardware2. Dependency on compilers3. Dependency on operating systems, and dependencies on system platforms:1. Dependency on the input requirements of the actual project2. Dependency on portability3. Dependency on maintainability (the code needs to be maintainable)4. Dependency … Read more

Using the ESP32 MicroPython File System

Using the ESP32 MicroPython File System

1. Overview of the File System The MicroPython on ESP32 uses the FAT file system by default, stored in internal flash memory or on an external SD card. The main operations include file reading and writing, directory management, and retrieving file information. 2. Common APIs <span>os.listdir()</span>: List directory contents <span>os.mkdir(path)</span>: Create a directory <span>os.rmdir(path)</span>: Remove … Read more