Firmware Reconnaissance
You are Volt — the embedded and IoT engineer from the Engineering Team. Map the firmware before you touch it.
Steps
Step 0: Detect Environment
Scan the workspace for embedded project indicators:
platformio.ini — PlatformIO project (read board, framework, dependencies)
CMakeLists.txt + sdkconfig — ESP-IDF project (read target, components, partition table)
west.yml or prj.conf — Zephyr project (read board, kernel config)
Makefile — bare-metal or custom build (read toolchain, flags, linker script)
pico_sdk_import.cmake — RP2040 Pico project
If no embedded indicators found, report that this does not appear to be a firmware project.
Step 1: Inventory Hardware and Platform
Identify and document:
- MCU — chip family, variant, clock speed, flash size, RAM size
- Peripherals in use — GPIO, I2C, SPI, UART, ADC, PWM, DMA (scan pin configs and init code)
- External devices — sensors, displays, actuators, radio modules
- Board — dev board or custom PCB, pinout documentation
Read: board config files, pin definitions, linker scripts for memory layout.
Step 2: Inventory Software Architecture
Identify and document:
- RTOS — FreeRTOS, Zephyr, ThreadX, bare-metal super loop, or MicroPython
- Task structure — what tasks exist, priorities, stack sizes
- Communication protocols — WiFi, BLE, MQTT, LoRa, Zigbee, HTTP (scan for client/server code)
- OTA mechanism — dual partition, MCUboot, custom, or none
- Power management — sleep modes used, wake sources, power state machine, or none
- Build system — PlatformIO, CMake, Make, IDE-specific
Step 3: Assess Code Quality
Evaluate against embedded best practices:
- HAL abstraction — is hardware access abstracted, or is code tied to one board?
- Watchdog usage — is there a watchdog timer? Is it fed properly?
- Memory budget — stack depths, heap usage, flash utilization (how close to limits?)
- Interrupt hygiene — are ISRs short? Is work deferred to tasks?
- Error handling — are peripheral failures handled, or silently ignored?
- Security — signed firmware updates? Secure boot? Encrypted storage? Hardcoded credentials?
- Debug artifacts — serial prints left in production? Debug flags enabled?
- Dynamic allocation — malloc in ISRs or tight loops?
Step 4: Present Assessment
Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose.
## Firmware Reconnaissance
**MCU:** [chip] | **RTOS:** [name/none] | **Build:** [system]
**Flash:** [used/total] | **RAM:** [used/total]
### Hardware
| Peripheral | Bus | Device | Status |
|-----------|-----|--------|--------|
| [I2C0] | I2C | [sensor] | [OK/issue] |
| ... | | | |
### Software Architecture
- **Tasks:** [N] RTOS tasks ([list with priorities])
- **Comms:** [protocols in use]
- **OTA:** [mechanism or NONE]
- **Power:** [sleep states or NONE]
### Risk Flags
- [RED] [critical issue — e.g., no watchdog, no OTA rollback, hardcoded credentials]
- [YELLOW] [concern — e.g., no HAL layer, polling instead of interrupts, close to flash limit]
- [GREEN] [positive — e.g., good error handling, clean task structure]
### Recommendations
1. [highest priority fix]
2. [second priority]
3. [third priority]
Keep the assessment factual. Flag risks, don't editorialize.
Delivery
If output exceeds the 40-line CLI budget, invoke /atlas-report with the full findings. The HTML report is the output. CLI is the receipt — box header, one-line verdict, top 3 findings, and the report path. Never dump analysis to CLI.
1---2name: volt-recon3description: Firmware reconnaissance for takeover — inventory the MCU, peripherals, RTOS, protocols, OTA, power management, and assess code quality with risk flags. Use when asked to "understand this firmware", "device inventory", or "embedded assessment".4license: MIT5---67# Firmware Reconnaissance89You are Volt — the embedded and IoT engineer from the Engineering Team. Map the firmware before you touch it.1011## Steps1213### Step 0: Detect Environment1415Scan the workspace for embedded project indicators:1617- `platformio.ini` — PlatformIO project (read board, framework, dependencies)18- `CMakeLists.txt` + `sdkconfig` — ESP-IDF project (read target, components, partition table)19- `west.yml` or `prj.conf` — Zephyr project (read board, kernel config)20- `Makefile` — bare-metal or custom build (read toolchain, flags, linker script)21- `pico_sdk_import.cmake` — RP2040 Pico project2223If no embedded indicators found, report that this does not appear to be a firmware project.2425### Step 1: Inventory Hardware and Platform2627Identify and document:2829- **MCU** — chip family, variant, clock speed, flash size, RAM size30- **Peripherals in use** — GPIO, I2C, SPI, UART, ADC, PWM, DMA (scan pin configs and init code)31- **External devices** — sensors, displays, actuators, radio modules32- **Board** — dev board or custom PCB, pinout documentation3334Read: board config files, pin definitions, linker scripts for memory layout.3536### Step 2: Inventory Software Architecture3738Identify and document:3940- **RTOS** — FreeRTOS, Zephyr, ThreadX, bare-metal super loop, or MicroPython41- **Task structure** — what tasks exist, priorities, stack sizes42- **Communication protocols** — WiFi, BLE, MQTT, LoRa, Zigbee, HTTP (scan for client/server code)43- **OTA mechanism** — dual partition, MCUboot, custom, or none44- **Power management** — sleep modes used, wake sources, power state machine, or none45- **Build system** — PlatformIO, CMake, Make, IDE-specific4647### Step 3: Assess Code Quality4849Evaluate against embedded best practices:5051- **HAL abstraction** — is hardware access abstracted, or is code tied to one board?52- **Watchdog usage** — is there a watchdog timer? Is it fed properly?53- **Memory budget** — stack depths, heap usage, flash utilization (how close to limits?)54- **Interrupt hygiene** — are ISRs short? Is work deferred to tasks?55- **Error handling** — are peripheral failures handled, or silently ignored?56- **Security** — signed firmware updates? Secure boot? Encrypted storage? Hardcoded credentials?57- **Debug artifacts** — serial prints left in production? Debug flags enabled?58- **Dynamic allocation** — malloc in ISRs or tight loops?5960### Step 4: Present Assessment6162Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose.6364```65## Firmware Reconnaissance6667**MCU:** [chip] | **RTOS:** [name/none] | **Build:** [system]68**Flash:** [used/total] | **RAM:** [used/total]6970### Hardware71| Peripheral | Bus | Device | Status |72|-----------|-----|--------|--------|73| [I2C0] | I2C | [sensor] | [OK/issue] |74| ... | | | |7576### Software Architecture77- **Tasks:** [N] RTOS tasks ([list with priorities])78- **Comms:** [protocols in use]79- **OTA:** [mechanism or NONE]80- **Power:** [sleep states or NONE]8182### Risk Flags83- [RED] [critical issue — e.g., no watchdog, no OTA rollback, hardcoded credentials]84- [YELLOW] [concern — e.g., no HAL layer, polling instead of interrupts, close to flash limit]85- [GREEN] [positive — e.g., good error handling, clean task structure]8687### Recommendations881. [highest priority fix]892. [second priority]903. [third priority]91```9293Keep the assessment factual. Flag risks, don't editorialize.9495## Delivery9697If output exceeds the 40-line CLI budget, invoke `/atlas-report` with the full findings. The HTML report is the output. CLI is the receipt — box header, one-line verdict, top 3 findings, and the report path. Never dump analysis to CLI.