C Language and Embedded System Performance Optimization

C Language and Embedded System Performance Optimization

C Language and Embedded System Performance Optimization: Improving System Response Speed In embedded system development, performance optimization is a crucial topic. Since embedded devices usually have limited resources, optimizing code to improve system response speed is particularly important. This article will introduce some common performance optimization techniques and illustrate them with C language code examples. … Read more

HeliOS: A Lightweight Embedded Operating System

HeliOS: A Lightweight Embedded Operating System

HeliOS is an open-source, free embedded multitasking kernel designed for various low-power embedded devices. It offers a rich, well-documented API that allows fine control over the system and access to kernel services (system calls), enabling functionalities such as task management, scheduler management, inter-process communication, memory management, and device management, all while maintaining a minimal memory … Read more

Applications of Python in Embedded Systems: Programming IoT Devices

Applications of Python in Embedded Systems: Programming IoT Devices

In-depth exploration: In embedded systems, Python can be used to implement various complex functions. Here are some key areas of in-depth discussion: Hardware Interface Programming: GPIO Programming: Control LED, buttons, motors, etc. Serial Communication: Use the pyserial library to communicate with serial devices. I2C Communication: Use the smbus library to interact with I2C devices. Sensor … Read more

Implementing Critical Section Protection in Cortex-M Bare Metal

Implementing Critical Section Protection in Cortex-M Bare Metal

Source | Pi Zi Heng Embedded Today, I will share with you three implementations of critical section protection in Cortex-M bare metal environments. Friends who have worked with embedded systems and RTOS are probably very familiar with the functionality codes OS_ENTER_CRITICAL() and OS_EXIT_CRITICAL(). In an RTOS, there are often multi-task (process) handling situations where certain … Read more

Advantages of Running RTOS on MCU Compared to Bare Metal

Advantages of Running RTOS on MCU Compared to Bare Metal

Follow+Star Public Account, don’t miss the wonderful content Compiled by | strongerHuang WeChat Official Account | Embedded Column Readers often ask questions about RTOS, such as:Should I learn RTOS now?What are the benefits of learning RTOS?Should my project run on RTOS? The root of these questions is actually a lack of understanding of RTOS and … Read more

Considerations for RTOS Task Stack Allocation

Considerations for RTOS Task Stack Allocation

Follow+Star PublicAccount, don’t miss the wonderful content Author | strongerHuang WeChat Public Account | Embedded Column Some friends asked this question: Do I need to allocate a large stack for a task with a lot of code? Actually, it’s not that the more code there is, the more stack space needs to be allocated. It … Read more

Mutex Issues Between RTOS Tasks

Mutex Issues Between RTOS Tasks

When developing projects based on RTOS, we often encounter mutual exclusion situations, such as: multiple tasks needing to use a single UART port to send data. If mutex locks are not used, a higher priority task may preempt the UART and send data, potentially resulting in “garbled” data being sent. Today, we will discuss a … Read more

Embedded RTOS DSP IoT Solutions

Embedded RTOS DSP IoT Solutions

Follow+Star Public Account, don’t miss the wonderful content Direct Source | RTThread IoT Operating System Original link: https://www.ceva-dsp.com/ourblog/iot-dsp-and-rtos-a-perfect-match/ The rapid development of the IoT has exceeded almost everyone’s imagination, with thousands of devices connecting to the network every day. In the face of such enormous market demand, traditional technologies have long been overwhelmed, while the … Read more

How to Choose a Free Open Source RTOS

How to Choose a Free Open Source RTOS

Follow+Star Public Account, don’t miss wonderful content Source | Embedded ARM Edited | strongerHuang RTOS: Real Time Operating System. RTOS is one of the essentials in embedded systems. With the development of domestic production, free RTOS options are increasing rapidly, offering embedded engineers a wider selection. A senior 21ic user stated that there are now … Read more

Practical Tools Based on RTOS

Practical Tools Based on RTOS

Note+Follow Our Public Account for Exciting Content to Stay Updated Source | Mictech Technology WeChat Official Account | Embedded Column More and more embedded systems rely on the use of Real-Time Operating Systems (RTOS) to meet real-time demands, reduce time to market, simplify development, and increase code portability. Despite the many benefits of RTOS, it … Read more