configure vscode

This commit is contained in:
2023-03-25 17:58:36 +01:00
parent 2140308b50
commit 42c8f0bc1b
8 changed files with 36744 additions and 101 deletions

22
firmware/.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": [
{
"type": "shell",
"label": "f303re",
"command": "C:/MyApps/mingw64/bin/make.exe",
"options": {
"cwd": "${workspaceFolder}/func_gen_stm32f303re_nucleo"
},
"args": [
"-j"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}