up
chenyc
2022-07-22 c7a95dae2c8c0a2fed4ceb8f7acb097598d346df
.vscode/tasks.json
@@ -1,14 +1,78 @@
{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "start .debug.script.mjs",
      "label": "haas-studio: Config",
      "type": "shell",
      "command": "node .vscode/.debug.script.mjs",
      "isBackground": true,
      "problemMatcher": []
      "command": "aos",
      "args": [
        "make",
        "@haaseduk1",
        "-c",
        "config"
      ],
      "presentation": {
        "focus": true
      }
    },
    {
      "label": "haas-studio: Make",
      "type": "shell",
      "command": "aos",
      "args": [
        "make"
      ],
      "presentation": {
        "focus": true
      }
    },
    {
      "label": "haas-studio: Burn",
      "type": "shell",
      "command": "aos",
      "args": [
        "burn"
      ],
      "presentation": {
        "focus": true
      }
    },
    {
      "label": "haas-studio: Serial Monitor",
      "type": "shell",
      "command": "aos",
      "args": [
        "monitor",
        "",
        "1500000"
      ],
      "presentation": {
        "focus": true,
        "panel": "dedicated"
      }
    },
    {
      "label": "haas-studio: Clean",
      "type": "shell",
      "command": "aos",
      "args": [
        "make",
        "clean"
      ],
      "presentation": {
        "focus": true
      }
    },
    {
      "label": "dummy_aos3.3.0",
      "command": "pwd"
    }
  ]
  ],
  "windows": {
    "options": {
      "env": {
        "PATH": "C:\\ProgramData\\aos\\miniconda3;C:\\ProgramData\\aos\\miniconda3\\Scripts;C:\\ProgramData\\aos\\miniconda3\\Library\\bin;${env:PATH}"
      }
    }
  }
}