Files
stm32g474_dac_dma_demo/.vscode/c_cpp_properties.json
2023-12-14 21:32:33 +01:00

27 lines
1006 B
JSON

{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/Core/Inc",
"${workspaceFolder}/Drivers/CMSIS/Include",
"${workspaceFolder}/Drivers/CMSIS/Device/ST/STM32G4xx/Include",
"${workspaceFolder}/Drivers/STM32G4xx_HAL_Driver/Inc",
"${workspaceFolder}/utils/printf"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"STM32G474xx",
"USE_HAL_DRIVER"
],
// "compilerPath": "C:/MyApps/arm-gcc/arm-gnu-toolchain-12.2.mpacbti-bet1-mingw-w64-i686-arm-none-eabi/bin/arm-none-eabi-gcc.exe",
"compilerPath": "C:/MyApps/arm-gcc/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe",
"cStandard": "c11",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
}