Files
coder_stm32f1/.vscode/c_cpp_properties.json

23 lines
606 B
JSON
Raw Normal View History

2023-06-10 11:52:00 +08:00
{
"configurations": [
{
"name": "stm32",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/source/soft",
"D:\\Keil_v5\\ARM\\ARMCC\\include"
],
"defines": [
"STM32F40_41xxx",
"USE_STDPERIPH_DRIVER",
"RT_THREAD",
"__CC_ARM",
"__packed= "
],
"cStandard": "c99",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
}