mirror of
https://github.com/ruvnet/RuView.git
synced 2026-04-28 05:59:32 +00:00
9-layer QEMU testing platform (ADR-061) and YAML-driven swarm configurator (ADR-062) for ESP32-S3 firmware testing without hardware. 12 commits, 56 files, +9,500 lines. Tested on Windows with Espressif QEMU 9.0.0 — firmware boots, mock CSI generates frames, 14/16 validation checks pass. 39 bugs found and fixed across 2 deep code reviews. Closes #259 Co-Authored-By: claude-flow <ruv@ruv.net>
49 lines
1.9 KiB
JSON
49 lines
1.9 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "QEMU ESP32-S3 Debug",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/firmware/esp32-csi-node/build/esp32-csi-node.elf",
|
|
"cwd": "${workspaceFolder}/firmware/esp32-csi-node",
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "xtensa-esp-elf-gdb",
|
|
"miDebuggerServerAddress": "localhost:1234",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Set remote hardware breakpoint limit (ESP32-S3 has 2)",
|
|
"text": "set remote hardware-breakpoint-limit 2",
|
|
"ignoreFailures": false
|
|
},
|
|
{
|
|
"description": "Set remote hardware watchpoint limit (ESP32-S3 has 2)",
|
|
"text": "set remote hardware-watchpoint-limit 2",
|
|
"ignoreFailures": false
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "QEMU ESP32-S3 Debug (attach)",
|
|
"type": "cppdbg",
|
|
"request": "attach",
|
|
"program": "${workspaceFolder}/firmware/esp32-csi-node/build/esp32-csi-node.elf",
|
|
"cwd": "${workspaceFolder}/firmware/esp32-csi-node",
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "xtensa-esp-elf-gdb",
|
|
"miDebuggerServerAddress": "localhost:1234",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Set remote hardware breakpoint limit (ESP32-S3 has 2)",
|
|
"text": "set remote hardware-breakpoint-limit 2",
|
|
"ignoreFailures": false
|
|
},
|
|
{
|
|
"description": "Set remote hardware watchpoint limit (ESP32-S3 has 2)",
|
|
"text": "set remote hardware-watchpoint-limit 2",
|
|
"ignoreFailures": false
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|