Compare commits

..

2 Commits

Author SHA1 Message Date
c2d489fff4 added debug config for pyocd 2025-12-20 19:48:21 +01:00
4728cb84be updated .gitignore 2025-12-20 19:47:34 +01:00
2 changed files with 16 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1,4 +1,4 @@
.cache .cache
.debug .debug
.vscode .venv
build build

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",
}
]
}