Embedded State Machine Libs
Overview
Use this skill for embedded state machine libraries and hand-written finite state machines. The core is to make states, events, transitions, side effects, and invalid transitions explicit and verifiable.
When To Use
Use this skill when:
- The user wants to add or debug a StateMachine library or event-driven MCU workflow.
- The issue involves wrong transitions, stuck states, reentrancy, event loss, timeout handling, or unclear state ownership.
- Firmware has modes such as idle, init, run, error, recovery, upgrade, sleep, or calibration.
Do not use this skill for RTOS scheduling issues unless the state machine is the primary abstraction.
First Questions
Ask for:
- State machine library or custom implementation.
- State list, event list, and current failing transition.
- Whether transitions run in ISR, task, main loop, or callback context.
- Whether timeouts, retries, or external interrupts drive events.
- Expected behavior for invalid events.
Integration Checklist
-
Define states and events. Names should reflect system meaning, not implementation steps.
-
Separate transition from action. Make it clear what changes state and what side effects run because of the transition.
-
Define invalid event behavior. Ignore, log, assert, error transition, or recovery must be explicit.
-
Guard reentrancy. Avoid nested transitions unless the library explicitly supports them.
-
Add observability. Log state transitions, current state, event source, and error transitions.
-
Test transition table. Validate normal path, invalid events, timeout events, and recovery path.
Common Failures
- Event emitted from ISR directly mutates state unsafely.
- Timeout event races with success event.
- State transition has hidden side effects that fail halfway.
- Invalid events are silently ignored in safety-critical flows.
- State names mirror functions instead of product behavior.
Verification
Before claiming state-machine behavior works:
- State the state list, event list, transition rules, and invalid-event policy.
- Confirm normal, timeout, error, and recovery transitions.
- Confirm event source and reentrancy strategy.
- Confirm transition logging or trace output exists for debugging.
Example
User:
设备升级状态机偶尔卡在 downloading。
Agent:
- Asks for states, events, timeout handling, and transition logs.
- Checks whether success/error/timeout events race.
- Verifies recovery transitions and invalid event behavior.