c_cpp_properties.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": 4,
  3. "configurations": [
  4. {
  5. "name": "Elektronika-12",
  6. "defines": [
  7. "STM32F030x6="
  8. ],
  9. "includePath": [
  10. "${workspaceRoot}/inc",
  11. "${workspaceRoot}/MCU/CMSIS/Include",
  12. "${workspaceRoot}/MCU/CMSIS/Device/ST/STM32F0xx/Include",
  13. "C:/MCU/gcc-arm/arm-none-eabi/include"
  14. ],
  15. "compilerPath": "C:/MCU/gcc-arm/bin/arm-none-eabi-gcc.exe",
  16. "forcedInclude": [],
  17. "cStandard": "gnu17",
  18. "cppStandard": "c++17",
  19. "intelliSenseMode": "windows-gcc-arm",
  20. "configurationProvider": "ms-vscode.makefile-tools",
  21. "browse": {
  22. "path": [
  23. "${workspaceRoot}/inc",
  24. "${workspaceRoot}/MCU/CMSIS/Include",
  25. "${workspaceRoot}/MCU/CMSIS/Device/ST/STM32F0xx/Include",
  26. "C:/MCU/gcc-arm/arm-none-eabi/include",
  27. "C:/MCU/gcc-arm/lib/gcc/arm-none-eabi/10.3.1/include",
  28. "C:/MCU/gcc-arm/lib/gcc/arm-none-eabi/10.3.1/include-fixed"
  29. ],
  30. "limitSymbolsToIncludedHeaders": true,
  31. "databaseFilename": "${workspaceRoot}/.vscode/browse.vc.db"
  32. }
  33. }
  34. ]
  35. }