feat:add rtt support

This commit is contained in:
2025-09-02 16:09:41 +08:00
parent 4b4e1a7d89
commit 86f64a8594
18 changed files with 4915 additions and 2 deletions

11
.vscode/launch.json vendored
View File

@@ -18,6 +18,17 @@
],
"svdFile": "${workspaceFolder}/STM32H743.svd",
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "auto",
"decoders": [
{
"label": "RTT",
"port": 0,
"type": "console"
}
]
},
"gdbPath": "/home/capacake/workspace/toolchain/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi/bin/arm-none-eabi-gdb",
"preLaunchTask": "Build"
}