-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathc_cpp_properties.json
44 lines (44 loc) · 1.57 KB
/
c_cpp_properties.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"configurations": [
{
"name": "STM32",
"intelliSenseMode": "linux-gcc-arm",
"browse": {
"limitSymbolsToIncludedHeaders": true
},
"includePath": [
"Core/Inc",
"Drivers/STM32C0xx_HAL_Driver/Inc",
"Drivers/STM32C0xx_HAL_Driver/Inc/Legacy",
"Drivers/BSP/STM32C0xx_Nucleo",
"Drivers/CMSIS/Device/ST/STM32C0xx/Include",
"Drivers/CMSIS/Include",
"Middlewares/Third_Party/FreeRTOS/Source/include/",
"Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/",
"Middlewares/Third_Party/CMSIS/RTOS2/Include/",
"Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/"
],
"compilerArgs": [
"-mcpu=cortex-m0",
"-mthumb",
"-Og",
"-Wall",
"-fdata-sections",
"-ffunction-sections",
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"USE_NUCLEO_64",
"USE_HAL_DRIVER",
"STM32C031xx"
],
"cStandard": "c17",
"cppStandard": "c++17",
"compilerPath": "C:\\Program Files (x86)\\Arm GNU Toolchain arm-none-eabi\\13.2 Rel1\\bin\\arm-none-eabi-gcc.exe"
// "compilerPath": "C:\\ST\\STM32CubeCLT\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe"
}
],
"version": 4
}