Date: agosto 25, 2025
Author: Guillermo Garcia
Categories: Embedded C programming Tags: Embedded C programming
Data types and variables are essential for embedded C language. In this article, we will learn about data types and variables. Variables A variable is a symbolic name used to address a certain memory location. The compiler will replace all variable names with their corresponding memory addresses. A variable has a memory location (lvalue) indicated […]
Read full article...Date: agosto 25, 2025
Author: Guillermo Garcia
Categories: Embedded C programming Tags: Embedded C programming
We begin this series where we learn C programming with the necessary focus to apply it in the development of embedded systems. C Programming Programming is quite well-known today, and even more people can learn to program thanks to high-level languages like Python. When we see the diverse range of languages available, we may wonder […]
Read full article...Date: agosto 17, 2025
Author: Guillermo Garcia
Categories: Embedded C programming / STM32 Tags:
In this article, we’ll cover everything you need to understand and control the HUB75 LED matrix P5 with STM32 microcontrollers. We’ll also see how to use it with DMA. About RGB Matrix Panels I’d never worked with this type of RGB display before. At first, I wondered how difficult it is to control these types […]
Read full article...Date: abril 17, 2025
Author: Guillermo Garcia
Categories: RTOS Tags: FreeRTOS
Event Groups in FreeRTOS play a crucial role in synchronizing multiple tasks based on event flags. This article explores Event Groups in FreeRTOS, explaining their functionality, benefits. What Are Event Groups in FreeRTOS? Event Groups in FreeRTOS are a set of binary flags (bits) used for event signaling between tasks and ISRs (Interrupt Service Routines). […]
Read full article...