mirror of
https://gitee.com/dlmu-cone/bf_original_balance_chassis
synced 2026-07-24 03:27:45 +08:00
89 lines
2.3 KiB
JSON
89 lines
2.3 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build task",
|
|
"type": "shell",
|
|
"command": "mingw32-make -j24",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "download dap",
|
|
"type": "shell",
|
|
"command": "mingw32-make -j24 ; mingw32-make download_dap",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": false
|
|
}
|
|
},
|
|
{
|
|
"label": "download jlink",
|
|
"type": "shell",
|
|
"command": " download_jlink",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": false
|
|
}
|
|
},
|
|
{
|
|
"label": "log",
|
|
"type": "shell",
|
|
"command": "JlinkRTTClient",
|
|
"args": [],
|
|
"problemMatcher": [],
|
|
"dependsOn": [
|
|
"build task"
|
|
]
|
|
},
|
|
{
|
|
"label": "Build STM",
|
|
"type": "process",
|
|
"command": "${command:stm32-for-vscode.build}",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
},
|
|
{
|
|
"label": "Build Clean STM",
|
|
"type": "process",
|
|
"command": "${command:stm32-for-vscode.cleanBuild}",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
},
|
|
{
|
|
"label": "Flash STM",
|
|
"type": "process",
|
|
"command": "${command:stm32-for-vscode.flash}",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
}
|
|
]
|
|
} |