Browse Source

add .vscode cfg

master
zhaohe 3 months ago
parent
commit
a1054708c2
  1. 28
      .vscode/c_cpp_properties.json
  2. 11
      .vscode/settings.json

28
.vscode/c_cpp_properties.json

@ -0,0 +1,28 @@
{
"configurations": [
{
"name": "app",
"includePath": [
"./Core/Inc",
"./Drivers/STM32F4xx_HAL_Driver/Inc",
"./Drivers/STM32F4xx_HAL_Driver/Inc/Legacy",
"./Middlewares/Third_Party/FreeRTOS/Source/include",
"./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS",
"./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F",
"./Drivers/CMSIS/Device/ST/STM32F4xx/Include",
"./Drivers/CMSIS/Include",
"C:/ST/STM32CubeIDE_1.15.0/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.win32_1.0.100.202403111256/tools/arm-none-eabi/include/",
"./usrc/",
"./"
],
"defines": [
"DEBUG",
"USE_HAL_DRIVER",
"STM32F407xx"
],
"compilerPath": "C:/ST/STM32CubeIDE_1.15.0/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.win32_1.0.100.202403111256/tools/bin/arm-none-eabi-g++.exe",
"intelliSenseMode": "${default}"
}
],
"version": 4
}

11
.vscode/settings.json

@ -0,0 +1,11 @@
{
"files.associations": {
"*.hpp": "cpp",
"freertos.h": "c",
"cmsis_os.h": "c",
"*.bak": "cpp",
"compare": "cpp"
},
"files.autoGuessEncoding": false,
"files.encoding": "utf8"
}
Loading…
Cancel
Save