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

25
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/Core/Inc",
"${workspaceFolder}/Drivers/CMSIS/Include",
"${workspaceFolder}/Drivers/CMSIS/Device/ST/STM32G4xx/Include",
"${workspaceFolder}/Drivers/STM32G4xx_HAL_Driver/Inc"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"STM32G474xx",
"USE_HAL_DRIVER"
],
"compilerPath": "C:/MyApps/arm-gcc/arm-gnu-toolchain-12.2.mpacbti-bet1-mingw-w64-i686-arm-none-eabi/bin/arm-none-eabi-gcc.exe",
"cStandard": "c11",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
}

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
},
}
]
}