diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..dc6b6f8 --- /dev/null +++ b/.vscode/tasks.json @@ -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 + } + } + ] +} \ No newline at end of file