added debug config for pyocd

This commit is contained in:
2025-12-20 19:48:21 +01:00
parent 4728cb84be
commit c2d489fff4

15
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"configurations": [
{
"cwd": "${workspaceFolder}",
"executable": "build/zephyr/zephyr.elf",
"name": "Debug with PyOCD",
"request": "launch",
"type": "cortex-debug",
"showDevDebugOutput": "none",
"servertype": "external",
"gdbTarget": "localhost:3333",
"targetId": "nrf54l",
}
]
}