diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..e6cfa12 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,29 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "cargo", + "command": "build", + "problemMatcher": [ + "$rustc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "label": "rust: cargo build" + }, + { + "type": "cargo", + "command": "espflash flash --no-stub --monitor", + "problemMatcher": [ + "$rustc" + ], + "group": { + "kind": "build", + "isDefault": false + }, + "label": "rust: cargo espflash" + } + ] +} \ No newline at end of file