This commit is contained in:
Your Name
2026-08-08 15:51:33 +03:00
commit 335f2cc9fb
35 changed files with 75208 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug with pyOCD (RP2350)",
"type": "cortex-debug",
"request": "launch",
"servertype": "pyocd",
"serverpath": "${workspaceFolder}/../../../zephyr/venv/bin/pyocd",
"cwd": "${workspaceFolder}",
"executable": "${workspaceFolder}/build/zephyr/zephyr.elf",
"interface": "swd",
"runToEntryPoint": "main",
// "preLaunchTask": "build",
"armToolchainPath": "/usr/bin",
"gdbPath": "/usr/bin/arm-none-eabi-gdb",
"serverArgs": [
"--target=rp2350",
"--core=0"
],
"showDevDebugOutput": "raw"
}
]
}