mirror of
https://github.com/stasenso/rp_pico_display_engine.git
synced 2026-06-27 05:42:41 +03:00
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Pico RP2040 Debug",
|
|
"type": "cortex-debug",
|
|
"cwd": "${workspaceFolder}",
|
|
"executable": "${workspaceFolder}/build-pico-Debug/engine_demo_example.elf",
|
|
|
|
"request": "launch",
|
|
"servertype": "external",
|
|
"gdbPath": "gdb-multiarch",
|
|
"gdbTarget": "localhost:3333",
|
|
"svdFile": "${env:HOME}/pico/pico-sdk/src/rp2040/hardware_regs/RP2040.svd",
|
|
"runToEntryPoint": "main",
|
|
"postRestartCommands": [
|
|
"break main",
|
|
"continue"
|
|
],
|
|
"showDevDebugOutput": "raw"
|
|
},
|
|
{
|
|
"name": "Pico 2 RP2350 Debug",
|
|
"type": "cortex-debug",
|
|
"cwd": "${workspaceFolder}",
|
|
"executable": "${workspaceFolder}/build-pico2-Debug/engine_demo_example.elf",
|
|
|
|
"request": "launch",
|
|
"servertype": "external",
|
|
"gdbPath": "gdb-multiarch",
|
|
"gdbTarget": "localhost:3333",
|
|
"svdFile": "${env:HOME}/pico/pico-sdk/src/rp2350/hardware_regs/RP2350.svd",
|
|
"runToEntryPoint": "main",
|
|
"postRestartCommands": [
|
|
"break main",
|
|
"continue"
|
|
],
|
|
"showDevDebugOutput": "raw"
|
|
}
|
|
]
|
|
}
|