init commit

This commit is contained in:
2023-09-25 20:15:10 +02:00
commit 0d74fea761
113 changed files with 132027 additions and 0 deletions

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

@@ -0,0 +1,22 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "f303-freertos",
"type": "shell",
"command": "C:/MyApps/mingw64/bin/make.exe",
"options": {
"cwd": "${workspaceFolder}"
},
"args": [
"-j"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}