| 1234567891011121314151617181920212223242526 |
- {
- "version": "0.2.0",
- "configurations": [
-
- {
- "name": "Pico Debug",
- "cwd": "${workspaceRoot}",
- "executable": "rtthread-pico.elf",
- "request": "launch",
- "type": "cortex-debug",
- "servertype": "openocd",
- "gdbPath" : "gdb-multiarch",
- "device": "RP2350",
- "configFiles": [
- "interface/cmsis-dap.cfg",
- "target/rp2350.cfg"
- ],
- "svdFile": "packages/raspberrypi-pico-rp2350-sdk-latest/src/rp2350/hardware_regs/RP2350.svd",
- "runToEntryPoint": "platform_entry",
- "postRestartCommands": [
- "break platform_entry",
- "continue"
- ]
- }
- ]
- }
|