Files
bf_original_balance_chassis/.vscode/tasks.json

89 lines
2.3 KiB
JSON
Raw Normal View History

2022-11-12 19:37:16 +08:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
2026-07-07 02:03:16 +08:00
"label": "build task",
"type": "shell",
"command": "mingw32-make -j24",
"problemMatcher": [],
2022-11-12 19:37:16 +08:00
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "download dap",
2026-07-07 02:03:16 +08:00
"type": "shell",
"command": "mingw32-make -j24 ; mingw32-make download_dap",
"group": {
"kind": "build",
2026-07-07 02:03:16 +08:00
"isDefault": false
}
},
{
2026-07-07 02:03:16 +08:00
"label": "download jlink",
"type": "shell",
2026-07-07 02:03:16 +08:00
"command": " download_jlink",
"group": {
"kind": "build",
2026-07-07 02:03:16 +08:00
"isDefault": false
}
},
{
"label": "log",
"type": "shell",
2026-07-07 02:03:16 +08:00
"command": "JlinkRTTClient",
"args": [],
"problemMatcher": [],
2026-07-07 02:03:16 +08:00
"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"
]
}
2022-11-12 19:37:16 +08:00
]
}