1234567891011121314151617181920212223242526272829303132 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Pico Debug",
- "cwd": "${workspaceRoot}",
- "executable": "${command:cmake.launchTargetPath}",
- "request": "launch",
- "type": "cortex-debug",
- "servertype": "openocd",
- // This may need to be "arm-none-eabi-gdb" for some previous builds
- "gdbPath" : "arm-none-eabi-gdb",
- //"gdbPath" : "gdb-multiarch",
- "device": "RP2040",
- "configFiles": [
- // This may need to be "interface/picoprobe.cfg" for some previous builds
- "interface/cmsis-dap.cfg",
- //"interface/picoprobe.cfg",
- "target/rp2040.cfg"
- ],
- "svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd",
- "runToEntryPoint": "main",
- // Work around for stopping at main on restart
- "postRestartCommands": [
- "break main",
- "continue"
- ],
- "searchDir": ["${workspaceFolder}/../openocd/tcl/"],
- "openOCDLaunchCommands": ["adapter speed 5000"]
- }
- ]
- }
|