Files
2026-08-07 19:04:38 +08:00

23 lines
626 B
JSON

{
"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": []
}
]
}