initial commit

This commit is contained in:
2020-01-21 01:38:34 +01:00
commit 204e0047e8
32 changed files with 9111 additions and 0 deletions

39
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,39 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run new build",
"type": "shell",
"command": "cd ${workspaceFolder} && pwd && make run",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "Copy new build to SD",
"type": "shell",
"command": "cd ${workspaceFolder} && pwd && make install",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": false
}
}
]
}