Files
chill/.vscode/launch.json
T
archmina e3e548ca90 First
2026-05-08 03:23:09 +03:00

23 lines
464 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Zephyr Remote Cortex-Debug (OpenOCD)",
"type": "cortex-debug",
"request": "launch",
"executable": "${workspaceFolder}/build/zephyr/zephyr.elf",
"servertype": "external",
"gdbTarget": "192.168.1.154:3333",
"gdbPath": "/usr/bin/arm-none-eabi-gdb",
"runToEntryPoint": "main",
"preLaunchCommands": [
"monitor reset halt"
]
}
]
}