stm32f407-openocd/.vscode/tasks.json

28 lines
768 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": [
"mingw32-make -j12"
],
"problemMatcher": [],
},
{
"label": "flash",
"type": "shell",
"dependsOn": "build",
"command": [
"openocd -f ./openocd_flash.cfg"
],
"problemMatcher": [],
"group": { //设置为默认构建任务按Ctrl+Shift+B立即执行不必选择
"kind": "build",
"isDefault": true
}
}
]
}