FreeRTOS Patterns for ESP32 and RP2040
Use this skill for real concurrency problems on ESP32 or RP2040. Keep the main
flow focused and load the detailed reference that matches the user's exact
problem.
Resources
references/patterns-task-creation.md - task lifecycle, priorities, stack
sizing, and task startup
references/patterns-queues.md - inter-task communication with queues
references/patterns-synchronization.md - mutexes, semaphores, critical
sections, and ISR coordination
references/patterns-memory.md - stack sizing, heap checks, and monitoring
references/patterns-advanced.md - watchdogs, notifications, event groups,
timers, and affinity
assets/workflow.mmd - architecture overview
When to Use
Use this skill when the request includes:
- multiple concurrent jobs on ESP32
- task priorities or preemption
- queue, semaphore, mutex, or notification design
- RP2040
setup1 and loop1 multicore coordination
- watchdog-safe long-running behavior
- debugging race conditions, stack overflows, or deadlocks
Do not use this skill when:
- the target is UNO or another single-core board
- a simple
millis() scheduler solves the problem
- the request is only about one blocking loop with no concurrency requirement
Workflow
- Confirm the target platform first:
- ESP32 -> FreeRTOS task model
- RP2040 -> dual-core coordination model
- Identify the dominant problem:
- task startup -> open
patterns-task-creation.md
- communication -> open
patterns-queues.md
- shared data or ISR signaling -> open
patterns-synchronization.md
- stack or heap risk -> open
patterns-memory.md
- watchdogs, notifications, timers, or affinity -> open
patterns-advanced.md
- Solve one synchronization boundary at a time. Avoid mixing queue, mutex, and
notification advice unless the design truly needs all of them.
- Keep board-specific details explicit. ESP32 FreeRTOS guidance and RP2040
multicore guidance are not interchangeable.
Core Rules
- Prefer the smallest concurrency primitive that solves the problem.
- Protect shared state explicitly. "Probably safe" is not safe.
- Use
vTaskDelay() or event-driven blocking on ESP32, never delay() inside
a task.
- Budget stack size deliberately and verify it with runtime evidence.
- For RP2040, define core ownership clearly before sharing data.
Verification
- Confirm each task or core has a single clear responsibility.
- Check queue depth, notification flow, or mutex coverage against the concrete
data path.
- For ESP32, inspect stack headroom with
uxTaskGetStackHighWaterMark() where the task size is uncertain.
- Verify the sketch can keep making progress without deadlock or busy waiting.
- If an ISR is involved, verify the synchronization primitive is ISR-safe for
that platform.
Common Failure Modes
- undersized task stack
delay() used inside a FreeRTOS task
- unprotected shared data
- deadlock from inconsistent lock order
- RP2040 core startup assumptions without mutex or ownership discipline
Integration
- Combine with
arduino-code-generator when the user needs a full sketch rather
than design guidance.
- Combine with
circuit-debugger only after the concurrency design looks sound
and a hardware timing issue still remains.
- Combine with
mermaid-diagram-generator when the concurrency design needs a
task, queue, or event-flow diagram.
Shared Output Contract
Use the shared Arduino skill contract:
state assumptions, required tools and versions, implementation steps,
tests/evidence by proof stage, known limitations, and recovery/security notes.
1---2name: freertos-patterns3description: Use when users need ESP32 FreeRTOS or RP2040 multicore patterns for task creation, queues, synchronization, memory checks, task notifications, or cross-core coordination.4---5
6# FreeRTOS Patterns for ESP32 and RP2040
7
8Use this skill for real concurrency problems on ESP32 or RP2040. Keep the main
9flow focused and load the detailed reference that matches the user's exact
10problem.
11
12## Resources
13
14- `references/patterns-task-creation.md` - task lifecycle, priorities, stack
15 sizing, and task startup
16- `references/patterns-queues.md` - inter-task communication with queues
17- `references/patterns-synchronization.md` - mutexes, semaphores, critical
18 sections, and ISR coordination
19- `references/patterns-memory.md` - stack sizing, heap checks, and monitoring
20- `references/patterns-advanced.md` - watchdogs, notifications, event groups,
21 timers, and affinity
22- `assets/workflow.mmd` - architecture overview
23
24## When to Use
25
26Use this skill when the request includes:
27
28- multiple concurrent jobs on ESP32
29- task priorities or preemption
30- queue, semaphore, mutex, or notification design
31- RP2040 `setup1` and `loop1` multicore coordination
32- watchdog-safe long-running behavior
33- debugging race conditions, stack overflows, or deadlocks
34
35Do not use this skill when:
36
37- the target is UNO or another single-core board
38- a simple `millis()` scheduler solves the problem
39- the request is only about one blocking loop with no concurrency requirement
40
41## Workflow
42
431. Confirm the target platform first:
44 - ESP32 -> FreeRTOS task model
45 - RP2040 -> dual-core coordination model
462. Identify the dominant problem:
47 - task startup -> open `patterns-task-creation.md`
48 - communication -> open `patterns-queues.md`
49 - shared data or ISR signaling -> open `patterns-synchronization.md`
50 - stack or heap risk -> open `patterns-memory.md`
51 - watchdogs, notifications, timers, or affinity -> open
52 `patterns-advanced.md`
533. Solve one synchronization boundary at a time. Avoid mixing queue, mutex, and
54 notification advice unless the design truly needs all of them.
554. Keep board-specific details explicit. ESP32 FreeRTOS guidance and RP2040
56 multicore guidance are not interchangeable.
57
58## Core Rules
59
60- Prefer the smallest concurrency primitive that solves the problem.
61- Protect shared state explicitly. "Probably safe" is not safe.
62- Use `vTaskDelay()` or event-driven blocking on ESP32, never `delay()` inside
63 a task.
64- Budget stack size deliberately and verify it with runtime evidence.
65- For RP2040, define core ownership clearly before sharing data.
66
67## Verification
68
69- Confirm each task or core has a single clear responsibility.
70- Check queue depth, notification flow, or mutex coverage against the concrete
71 data path.
72- For ESP32, inspect stack headroom with
73 `uxTaskGetStackHighWaterMark()` where the task size is uncertain.
74- Verify the sketch can keep making progress without deadlock or busy waiting.
75- If an ISR is involved, verify the synchronization primitive is ISR-safe for
76 that platform.
77
78## Common Failure Modes
79
80- undersized task stack
81- `delay()` used inside a FreeRTOS task
82- unprotected shared data
83- deadlock from inconsistent lock order
84- RP2040 core startup assumptions without mutex or ownership discipline
85
86## Integration
87
88- Combine with `arduino-code-generator` when the user needs a full sketch rather
89 than design guidance.
90- Combine with `circuit-debugger` only after the concurrency design looks sound
91 and a hardware timing issue still remains.
92- Combine with `mermaid-diagram-generator` when the concurrency design needs a
93 task, queue, or event-flow diagram.
94
95## Shared Output Contract
96
97Use [the shared Arduino skill contract](../../docs/arduino-skill-contract.md):
98state assumptions, required tools and versions, implementation steps,
99tests/evidence by proof stage, known limitations, and recovery/security notes.