c_cpp_properties.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "version": 4,
  3. "configurations": [
  4. {
  5. "name": "IN12x5",
  6. "defines": [
  7. "STM32G030xx=",
  8. "USE_FULL_LL_DRIVER=",
  9. "HSE_VALUE=8000000",
  10. "HSE_STARTUP_TIMEOUT=100",
  11. "LSE_STARTUP_TIMEOUT=5000",
  12. "LSE_VALUE=32768",
  13. "EXTERNAL_CLOCK_VALUE=24000000",
  14. "HSI_VALUE=16000000",
  15. "LSI_VALUE=32000",
  16. "VDD_VALUE=3300",
  17. "PREFETCH_ENABLE=0",
  18. "INSTRUCTION_CACHE_ENABLE=1",
  19. "DATA_CACHE_ENABLE=1"
  20. ],
  21. "includePath": [
  22. "${workspaceRoot}/Inc",
  23. "${workspaceRoot}/Drivers/CMSIS/Include",
  24. "${workspaceRoot}/Drivers/STM32G0xx_HAL_Driver/Inc",
  25. "${workspaceRoot}/Drivers/CMSIS/Device/ST/STM32G0xx/Include",
  26. "C:/MCU/gcc-arm/arm-none-eabi/include"
  27. ],
  28. "compilerPath": "C:/MCU/gcc-arm/bin/arm-none-eabi-gcc.exe",
  29. "forcedInclude": [],
  30. "cStandard": "gnu17",
  31. "cppStandard": "c++17",
  32. "intelliSenseMode": "windows-gcc-arm",
  33. "configurationProvider": "ms-vscode.makefile-tools",
  34. "browse": {
  35. "path": [
  36. "${workspaceRoot}",
  37. "${workspaceRoot}/Inc",
  38. "${workspaceRoot}/Drivers/CMSIS/Include",
  39. "${workspaceRoot}/Drivers/STM32G0xx_HAL_Driver/Inc",
  40. "${workspaceRoot}/Drivers/CMSIS/Device/ST/STM32G0xx/Include",
  41. "C:/MCU/gcc-arm/arm-none-eabi/include",
  42. "C:/MCU/gcc-arm/lib/gcc/arm-none-eabi/9.3.1/include",
  43. "C:/MCU/gcc-arm/lib/gcc/arm-none-eabi/9.3.1/include-fixed"
  44. ],
  45. "limitSymbolsToIncludedHeaders": true,
  46. "databaseFilename": "${workspaceRoot}/.vscode/browse.vc.db"
  47. }
  48. }
  49. ]
  50. }