DEV Community

Cover image for Introduction to an OpenSource Embedded Real-Time Operating System
Abby
Abby

Posted on • Updated on

Introduction to an OpenSource Embedded Real-Time Operating System

RT-Thread was born in 2006, it is an open-source, neutral, and community-based real-time operating system (RTOS).

RT-Thread has Standard version and Nano version:

  • For resource-constrained microcontroller (MCU) systems, the NANO kernel version that requires only 3KB Flash and 1.2KB RAM memory resources can be tailored with easy-to-use tools;

  • For resource-rich IoT devices, RT-Thread can use the on-line software package management tool, together with system configuration tools, to achieve intuitive and rapid modular cutting, seamlessly import rich software packages, thus achieving complex functions like Android's graphical interface and touch sliding effects, smart voice interaction effects, and so on.

RT-Thread Architecture:

Alt Text

Kernel Layer: RT-Thread kernel, the core part of RT-Thread, includes the implementation of objects in the kernel system, such as multi-threading and its scheduling, semaphore, mailbox, message queue, memory management, timer, etc.; libcpu/BSP (Chip Migration Related Files/Board Support Package) is closely related to hardware and consists of peripheral drivers and CPU porting.

Components and Service Layer: Components are based on upper-level software on top of the RT-Thread kernel, such as virtual file systems, FinSH command-line interfaces, network frameworks, device frameworks, and more. Its modular design allows for high internal cohesion inside the components and low coupling between components.

RT-Thread Software Package: A general-purpose software component running on the RT-Thread IoT operating system platform for different application areas, consisting of description information, source code, or library files. RT-Thread provides an open package platform with officially available or developer-supplied packages that provide developers with a choice of reusable packages that are an important part of the RT-Thread ecosystem. The package ecosystem is critical to the choice of an operating system because these packages are highly reusable and modular, making it easy for application developers to build the system they want in the shortest amount of time. RT-Thread supports more than 200 software packages.

RT-Thread Features:

  • Supports resource-constrained devices, the minimum kernel requires only 1.2KB of RAM and 3 KB of Flash.
  • It has rich components and a prosperous and fast-growing package ecosystem.
  • Elegant code style, easy to use, read and master.
  • High Scalability. RT-Thread has high-quality scalable software architecture, loose coupling, modularity, is easy to tailor and expand.
  • Supports high-performance applications.
  • Supports cross-platform and a wide range of chips.

Real-time system (RTOS) is increasingly widely used in the high-end Internet of Things (like AIoT) because of its low cost, high real-time, and fast start-up characteristics, soon or later, more and more RTOSs would support multi-kernel SMP, AI, audio & video and this is inevitable. In the near future, RT-Thread Studio IDE, next-generation microkernel architecture, AI frameworks and more will all be released step by step.

This is a new world of RTOS.

RT-Thread Contact Info:

Website | Github | Twitter | Facebook | Youtube

Top comments (0)