22 lines
589 B
JSON
22 lines
589 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Cortex Debug (Pico 2W / RP2350)",
|
|
"cwd": "${workspaceRoot}",
|
|
"executable": "${workspaceRoot}/build/sint-gauntlet.elf",
|
|
"request": "launch",
|
|
"type": "cortex-debug",
|
|
"servertype": "external",
|
|
"gdbPath": "arm-none-eabi-gdb",
|
|
"gdbTarget": "localhost:3333",
|
|
"device": "RP2350",
|
|
"svdFile": "${env:PICO_SDK_PATH}/src/rp2350/hardware_regs/rp2350.svd",
|
|
"runToEntryPoint": "main",
|
|
"postRestartCommands": [
|
|
"break main",
|
|
"continue"
|
|
]
|
|
}
|
|
]
|
|
} |