You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
928 B
30 lines
928 B
{ |
|
// 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": "${workspaceRoot}", |
|
"executable": "${command:cmake.launchTargetPath}", |
|
"request": "launch", |
|
"type": "cortex-debug", |
|
"servertype": "openocd", |
|
"gdbPath": "gdb-multiarch", |
|
"device": "RP2040", |
|
"configFiles": [ |
|
"interface/picoprobe.cfg", |
|
"target/rp2040.cfg" |
|
], |
|
"svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd", |
|
"runToMain": true, |
|
// Give restart the same functionality as runToMain |
|
"postRestartCommands": [ |
|
"break main", |
|
"continue" |
|
], |
|
"searchDir": ["/scratch/projects/pico/openocd/tcl/"] |
|
} |
|
] |
|
}
|
|
|