working tx

This commit is contained in:
2026-03-13 12:44:56 +01:00
parent 9f05489b3a
commit 5af462ac4f
2 changed files with 45 additions and 0 deletions

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

@@ -0,0 +1,27 @@
{
"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"
],
}
]
}