bme680-stm32/.vscode/c_cpp_properties.json

31 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2021-01-06 00:58:55 +01:00
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/",
"${workspaceFolder}/cubemx/Core/Inc",
"${workspaceFolder}/cubemx/Drivers/STM32L1xx_HAL_Driver/Inc",
"${workspaceFolder}/cubemx/Drivers/STM32L1xx_HAL_Driver/Inc/Legacy",
"${workspaceFolder}/cubemx/Middlewares/Third_Party/FreeRTOS/Source/include",
"${workspaceFolder}/cubemx/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2",
"${workspaceFolder}/cubemx/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM3",
"${workspaceFolder}/cubemx/Drivers/CMSIS/Device/ST/STM32L1xx/Include",
2021-10-29 21:53:09 +02:00
"${workspaceFolder}/cubemx/Drivers/CMSIS/Include",
"${workspaceFolder}/src",
"${workspaceFolder}/src/oled-driver/include",
"${workspaceFolder}/src/oled-driver"
2021-01-06 00:58:55 +01:00
],
"defines": [
2021-10-29 21:53:09 +02:00
"DEBUG",
2021-01-06 23:51:11 +01:00
"STM32L152xC",
2021-10-29 21:53:09 +02:00
"BME68X_DO_NOT_USE_FPU",
"FW_USE_RTOS"
2021-01-06 00:58:55 +01:00
],
2021-10-29 21:53:09 +02:00
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
2021-01-06 00:58:55 +01:00
"cStandard": "c11",
"cppStandard": "c++17"
}
],
"version": 4
}