Files
picopal/.vscode/launch.json
2026-04-01 13:56:21 +02:00

32 lines
888 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": "${command:cmake.launchTargetPath}",
"request": "launch",
"type": "cortex-debug",
"servertype": "openocd",
"gdbPath": "arm-none-eabi-gdb",
"device": "RP2350",
"targetProcessor": 0,
"configFiles": [
"interface/cmsis-dap.cfg",
"target/rp2350.cfg"
],
"openOCDLaunchCommands": [
"adapter speed 5000"
],
"svdFile": "${env:PICO_SDK_PATH}/src/rp2350/hardware_regs/rp2350.svd",
"postRestartCommands": [
"break main",
"continue"
]
}
]
}