Skip to content

Commit

Permalink
env: add tasks.json for vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
edy555 committed Oct 14, 2019
1 parent 97c4f81 commit bc5aa9d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"command": "make",
"group": "build"
},
{
"label": "flash",
"type": "shell",
"command": "make dfu flash",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit bc5aa9d

Please sign in to comment.