Rcore Documentation __full__ Jun 2026
The is structured to address three primary user personas:
#include <rcore.h> void led_task(void *arg) while (1) gpio_toggle(LED_PIN); rcore_sleep_ms(500);
Before dissecting the documentation, it is essential to understand what rcore is. rcore (Robust Core) is a preemptive, real-time kernel designed for microcontrollers with limited RAM and ROM (as low as 2KB RAM). It supports fixed-priority scheduling, mutexes with priority inheritance, message queues, and software timers. Unlike Linux or heavyweight RTOSes like VxWorks, rcore operates without a memory management unit (MMU), ensuring predictable latency. rcore documentation
Beyond the basics, the delves into advanced real-time patterns:
The tutorial book is where most beginners start. The is structured to address three primary user
To maximize your productivity, follow these strategies when working with the :
Let’s be honest—rcore docs aren’t perfect. Unlike Linux or heavyweight RTOSes like VxWorks, rcore
There are two main documentation sites depending on what you're looking for: Official Documentation Hub : This is the primary home for all their paid resources