fresh project

This commit is contained in:
2023-12-11 19:14:15 +01:00
commit ca96771e90
117 changed files with 148958 additions and 0 deletions

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

@@ -0,0 +1,23 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "nucleo-g474re",
"command": "C:/MyApps/mingw64/bin/make.exe",
"args": [
"-j"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
}
]
}