初版适配和修改

This commit is contained in:
cyy_mac
2026-08-07 19:04:38 +08:00
parent 460e0e9e73
commit f695460797
17 changed files with 1701 additions and 1 deletions

22
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Debug",
"type": "shell",
"command": "make",
"args": ["-j8", "BUILD=debug", "all"],
"options": { "cwd": "${workspaceFolder}" },
"group": { "kind": "build", "isDefault": true },
"problemMatcher": ["$gcc"]
},
{
"label": "Flash DAPLink",
"type": "shell",
"command": "make",
"args": ["BUILD=debug", "flash"],
"options": { "cwd": "${workspaceFolder}" },
"problemMatcher": []
}
]
}