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

24
firmware/.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/func_gen_stm32f303re_nucleo/Core/**",
"${workspaceFolder}/func_gen_stm32f303re_nucleo/Drivers/**",
"${workspaceFolder}/shared_libs/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"STM32F303xE",
"USE_HAL_DRIVER"
],
"compilerPath": "C:/MyApps/arm-gcc/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe",
"cStandard": "c11",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-arm"
}
],
"version": 4
}