Understanding FreeRTOS-TCP Software Architecture

Understanding FreeRTOS-TCP Software Architecture

Follow+Star the public account, don’t miss exciting content Author | Tanmoy Sen WeChat Official Account | strongerHuang In today’s world of advanced networking, more and more devices have the need to connect to the internet, and the ways to connect are increasing. At the Smart Production Solutions (SPS) exhibition held in Nuremberg in November 2022, … Read more

Reverse Engineering FreeRTOS: A Comprehensive Guide

Reverse Engineering FreeRTOS: A Comprehensive Guide

FreeRTOS Introduction FreeRTOS is a mini real-time operating system kernel. As a lightweight operating system, it includes functionalities such as task management, time management, semaphores, message queues, memory management, logging features, software timers, coroutines, etc., which can basically meet the needs of smaller systems. Compiling FreeRTOS Compilation Environment · Windows 10 20H2 · Keil V5.33.0.0 … Read more

Running FreeRTOS on ZYNQ SoC

Running FreeRTOS on ZYNQ SoC

Running FreeRTOS on ZYNQ SoC This project demonstrates how to get started with FreeRTOS on the Zynq SoC. Introduction The AMD Zynq SoC device combines the programmable logic structure of a typical FPGA with the processing power provided by an ARM processor core, serving as a platform for building various embedded system applications. Dedicated logic … Read more

Implementing Inter-Task Communication in FreeRTOS

Implementing Inter-Task Communication in FreeRTOS

Follow and star our public account, reach wonderful content directly Source: Technology makes dreams greater Author: Li Xiaoyao FreeRTOS is a customizable, preemptive multitasking kernel that is very useful and has no limit on the number of tasks. It has been analyzed many times before, simply put, FreeRTOS real-time systems can create multiple independent tasks … Read more

Understanding the FreeRTOS Task Scheduler

Understanding the FreeRTOS Task Scheduler

Concept of Task Scheduler FreeRTOS provides a priority-based preemptive task scheduler: with the exception of interrupt handler functions, the code that locks the scheduler, and code that disables interrupts, all other parts of the system can be preempted. The system theoretically supports an unlimited number of priorities (0 ~ N), the lower the priority value, … Read more

Introduction to FreeRTOS: Heap and Stack

Introduction to FreeRTOS: Heap and Stack

Introduction This article officially starts learning about the FreeRTOS operating system. I plan to write a series of articles to help everyone quickly get started with FreeRTOS. 1. Introduction to FreeRTOS FreeRTOS is an open-source, real-time, embedded operating system that is widely used in small embedded systems and microcontrollers. The design goal of FreeRTOS is … Read more

Understanding Open Source Licenses for µC/OS, FreeRTOS, RT-Thread, and ThreadX

Understanding Open Source Licenses for µC/OS, FreeRTOS, RT-Thread, and ThreadX

Follow+Star public number, don’t miss wonderful content Author | strongerHuang WeChat Public Account | Embedded Column Currently, there are many types of open source licenses on the market, such as:GPL, BSD, MIT, Mozilla, Apache, and LGPL etc. When choosing an RTOS, factors such as open source, market share, supporting materials and examples, and supporting components … Read more

Five Major Embedded Systems in STM32 Development

Five Major Embedded Systems in STM32 Development

Technology often updates very quickly, and it always makes us feel that learning is difficult and somewhat confusing. However, it’s okay; we enthusiasts focus on learning with joy. To learn about STM32, we first need to understand the five major embedded operating systems: μClinux, μC/OS-II, eCos, FreeRTOS, and RT-thread. μClinux μClinux is an excellent version … Read more

Selected Compilation | Embedded Software Design and Development

Selected Compilation | Embedded Software Design and Development

Follow+Star public number, don’t miss wonderful content Author | strongerHuang WeChat public account | Embedded Column In order to facilitate everyone to review and check articles on public transportation, subways, and going out, I have carefully selected and categorized some articles: Embedded Software Architecture Design Layering Ideas Common “Safety” Operations of EEPROM in Projects Ideas … Read more

FreeRTOS Practical Guide: From Beginner to Expert

FreeRTOS Practical Guide: From Beginner to Expert

FreeRTOS Practical Guide: From Beginner to Expert In the field of embedded systems, Real-Time Operating Systems (RTOS) play a crucial role, helping developers better manage task scheduling, memory allocation, and multi-threading. FreeRTOS, as an open-source, lightweight real-time operating system kernel, is widely used in both commercial and academic fields. This article will introduce how to … Read more