espre-c6/.vscode/launch.json
Thomas Klaehn 03a3c8732f Initial commit
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2025-02-12 05:32:06 +01:00

22 lines
762 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Cortex Debug",
"cwd": "${workspaceFolder}",
"executable": "./std-training/intro/hardware-check/target/riscv32imc-esp-espidf/debug/",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"gdbPath": "gdb-multiarch",
"servertype": "openocd",
"configFiles": [
"interface/stlink.cfg",
"target/stm32g0x.cfg"
]
}
]
}