2026rc_r2/.vscode/c_cpp_properties.json
2026-03-17 04:39:54 +08:00

18 lines
588 B
JSON

{
"configurations": [
{
"name": "STM32",
"compileCommands": "${workspaceFolder}/build/Debug/compile_commands.json",
"compilerPath": "D:/Develop/toolchain/arm-gnu-toolchain-14.3.rel1-mingw-w64-x86_64-arm-none-eabi/bin/arm-none-eabi-gcc.exe",
"compilerArgs": [
"-mcpu=cortex-m4",
"-mfpu=fpv4-sp-d16",
"-mfloat-abi=hard"
],
"intelliSenseMode": "gcc-arm",
"cStandard": "c11",
"cppStandard": "gnu++14"
}
],
"version": 4
}