From c2d489fff4a05c997da0495663be15848d6222d7 Mon Sep 17 00:00:00 2001 From: Timo Schneider Date: Sat, 20 Dec 2025 19:48:21 +0100 Subject: [PATCH] added debug config for pyocd --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..83f2146 --- /dev/null +++ b/.vscode/launch.json @@ -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", + } + ] +} \ No newline at end of file