27 lines
737 B
JSON
27 lines
737 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Zephyr west debugserver",
|
|
"type": "cortex-debug",
|
|
"request": "attach",
|
|
"servertype": "external",
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"executable": "${workspaceFolder}/build/zephyr/zephyr.elf",
|
|
"gdbTarget": "localhost:3333",
|
|
|
|
"svdFile": "${env:ZEPHYR_BASE}/../modules/hal/nordic/nrfx/bsp/stable/mdk/nrf54l15_application.svd",
|
|
"rtos": "Zephyr",
|
|
|
|
"overrideAttachCommands": [
|
|
"monitor reset halt",
|
|
],
|
|
|
|
"postAttachCommands": [
|
|
//"tbreak main",
|
|
"continue"
|
|
],
|
|
}
|
|
]
|
|
} |