{ // 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 } } ] }