Files
checker_slave/.vscode/c_cpp_properties.json

38 lines
1.2 KiB
JSON
Raw Normal View History

2023-06-10 11:52:00 +08:00
{
"configurations": [
{
"name": "app",
2023-06-10 11:52:00 +08:00
"includePath": [
"${workspaceFolder}/**",
2023-10-31 23:52:32 +08:00
"${workspaceFolder}/source/**",
"D:/GNU Arm Embedded Toolchain/10 2021.10/arm-none-eabi/include"
2023-06-10 11:52:00 +08:00
],
"defines": [
"USE_STDPERIPH_DRIVER",
"RT_THREAD",
2023-10-31 23:52:32 +08:00
"STM32F10X_MD"
2023-06-10 11:52:00 +08:00
],
"cStandard": "c99",
"cppStandard": "gnu++17",
2023-10-31 23:52:32 +08:00
"intelliSenseMode": "windows-gcc-arm",
"compilerPath": "D:\\GNU Arm Embedded Toolchain\\10 2021.10\\bin\\arm-none-eabi-gcc"
},
{
"name": "boot",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/source/**",
"D:/GNU Arm Embedded Toolchain/10 2021.10/arm-none-eabi/include"
],
"defines": [
"USE_STDPERIPH_DRIVER",
"STM32F10X_MD"
],
"cStandard": "c99",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-arm",
"compilerPath": "D:\\GNU Arm Embedded Toolchain\\10 2021.10\\bin\\arm-none-eabi-gcc"
2023-06-10 11:52:00 +08:00
}
],
"version": 4
}