Non-Blocking Patterns
Keep the main loop responsive and make timing behavior testable. Prefer C/C++
patterns that can be compiled for the exact board; use Python only for relevant
test or log analysis tooling.
Intake
Record board/core version, task periods, deadlines, maximum work duration,
input bounce, serial/network behavior, watchdog policy, interrupt constraints,
and the safety response for missed deadlines.
Process
- List each periodic or event-driven task with period, deadline, and worst-case
work. Identify any blocking library call.
- Replace long
delay() calls with unsigned wrap-safe elapsed checks such as
if (static_cast<unsigned long>(now - last) >= period). Use hardware timers
or RTOS tasks only when board and framework support is confirmed.
- Model multi-step work as an explicit state machine with bounded transitions;
do not hide waits inside a helper.
- Debounce inputs using a stable-state timer or event filter, not a blocking
pause. Bound serial parsing, network retries, and sensor conversion waits.
- Define watchdog feeding, output inhibit, timeout, and recovery behavior.
- Measure loop latency and task jitter under representative logging, radio,
storage, and actuator load.
Anti-rationalization
| Shortcut |
Response |
| "A shorter delay is fine." |
It is still blocking; show the deadline and replace it. |
| "The loop is fast on USB." |
Measure with the actual radio, storage, and actuator load. |
| "The enum makes it a state machine." |
Require timed transitions, explicit entry/exit, and timeout behavior. |
| "The watchdog can be fed everywhere." |
Define ownership and fail-safe behavior; do not mask a stuck task. |
"millis() never wraps." |
Use unsigned subtraction and test the wrap boundary. |
Verification
- No unbounded blocking call remains in the time-critical path without a
documented reason and timeout.
- Debounce, wraparound, timeout, and missed-deadline cases have tests.
- Exact-target compile proof and timing/serial evidence are separate.
- Outputs enter a safe state when a task, sensor, or communication path times
out.
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: non-blocking-patterns3description: Use when Arduino or embedded C++ code uses delay(), needs button debouncing, periodic work, cooperative scheduling, watchdog-safe timing, state machines, or latency/jitter control under sensor, network, or motor load.4---5
6# Non-Blocking Patterns
7
8Keep the main loop responsive and make timing behavior testable. Prefer C/C++
9patterns that can be compiled for the exact board; use Python only for relevant
10test or log analysis tooling.
11
12## Intake
13
14Record board/core version, task periods, deadlines, maximum work duration,
15input bounce, serial/network behavior, watchdog policy, interrupt constraints,
16and the safety response for missed deadlines.
17
18## Process
19
201. List each periodic or event-driven task with period, deadline, and worst-case
21 work. Identify any blocking library call.
222. Replace long `delay()` calls with unsigned wrap-safe elapsed checks such as
23 `if (static_cast<unsigned long>(now - last) >= period)`. Use hardware timers
24 or RTOS tasks only when board and framework support is confirmed.
253. Model multi-step work as an explicit state machine with bounded transitions;
26 do not hide waits inside a helper.
274. Debounce inputs using a stable-state timer or event filter, not a blocking
28 pause. Bound serial parsing, network retries, and sensor conversion waits.
295. Define watchdog feeding, output inhibit, timeout, and recovery behavior.
306. Measure loop latency and task jitter under representative logging, radio,
31 storage, and actuator load.
32
33## Anti-rationalization
34
35| Shortcut | Response |
36|---|---|
37| "A shorter delay is fine." | It is still blocking; show the deadline and replace it. |
38| "The loop is fast on USB." | Measure with the actual radio, storage, and actuator load. |
39| "The enum makes it a state machine." | Require timed transitions, explicit entry/exit, and timeout behavior. |
40| "The watchdog can be fed everywhere." | Define ownership and fail-safe behavior; do not mask a stuck task. |
41| "`millis()` never wraps." | Use unsigned subtraction and test the wrap boundary. |
42
43## Verification
44
45- No unbounded blocking call remains in the time-critical path without a
46 documented reason and timeout.
47- Debounce, wraparound, timeout, and missed-deadline cases have tests.
48- Exact-target compile proof and timing/serial evidence are separate.
49- Outputs enter a safe state when a task, sensor, or communication path times
50 out.
51
52## Shared output contract
53
54Use [the shared Arduino skill contract](../../docs/arduino-skill-contract.md):
55state assumptions, required tools and versions, implementation steps,
56tests/evidence by proof stage, known limitations, and recovery/security notes.