NanoVNA/.vscode/tasks.json

20 lines
412 B
JSON
Raw Normal View History

2019-10-14 09:03:14 +09:00
{
"version": "2.0.0",
"tasks": [
{
2020-03-08 19:56:37 +09:00
"label": "build",
2019-10-14 09:03:14 +09:00
"type": "shell",
"command": "make",
2020-03-08 19:56:37 +09:00
"group": {
"kind": "build",
"isDefault": true
}
2019-10-14 09:03:14 +09:00
},
{
"label": "flash",
"type": "shell",
"command": "make dfu flash",
2020-03-08 19:56:37 +09:00
"group": "build"
2019-10-14 09:03:14 +09:00
}
]
}