{ "version": "2.0.0", "tasks": [ { "label": "build", "type": "shell", "command": "make", "args": ["-j8"], "group": { "kind": "build", "isDefault": true }, "problemMatcher": ["$gcc"], "presentation": { "echo": true, "reveal": "always", "panel": "shared", "clear": true } }, { "label": "rebuild", "type": "shell", "command": "make", "args": ["rebuild", "-j8"], "problemMatcher": ["$gcc"], "presentation": { "clear": true } }, { "label": "clean", "type": "shell", "command": "make", "args": ["clean"] }, { "label": "flash", "type": "shell", "command": "make", "args": ["flash"], "dependsOn": "build", "problemMatcher": [] }, { "label": "erase", "type": "shell", "command": "make", "args": ["erase"], "problemMatcher": [] }, { "label": "size", "type": "shell", "command": "make", "args": ["size"], "problemMatcher": [] } ] }