1{ 2 "version": "0.2.0", 3 "configurations": [ 4 5 { 6 "name": "Pico Debug", 7 "cwd": "${workspaceRoot}", 8 "executable": "rtthread-pico.elf", 9 "request": "launch", 10 "type": "cortex-debug", 11 "servertype": "openocd", 12 "gdbPath" : "gdb-multiarch", 13 "device": "RP2350", 14 "configFiles": [ 15 "interface/cmsis-dap.cfg", 16 "target/rp2350.cfg" 17 ], 18 "svdFile": "packages/raspberrypi-pico-rp2350-sdk-latest/src/rp2350/hardware_regs/RP2350.svd", 19 "runToEntryPoint": "platform_entry", 20 "postRestartCommands": [ 21 "break platform_entry", 22 "continue" 23 ] 24 } 25 ] 26} 27