36 lines
935 B
JSON
36 lines
935 B
JSON
{
|
|
// 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": "python",
|
|
"args": [
|
|
"make.py"
|
|
],
|
|
"group": "build",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/Project"
|
|
},
|
|
},
|
|
{
|
|
"label": "download",
|
|
"type": "shell",
|
|
"command": "openocd",
|
|
"args": [
|
|
"-f",
|
|
"interface/stlink-v2.cfg",
|
|
"-f",
|
|
"target/stm32f4x.cfg",
|
|
"-c",
|
|
"program ./output/stm32.elf verify reset exit"
|
|
],
|
|
"group": "build",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/Project"
|
|
},
|
|
}
|
|
]
|
|
} |