c_cpp_properties.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "version": 4,
  3. "configurations": [
  4. {
  5. "name": "Stab-STM32",
  6. "defines": [
  7. "STM32F103xx="
  8. ],
  9. "includePath": [
  10. "${workspaceRoot}/inc",
  11. "${workspaceRoot}/cfg",
  12. "${workspaceRoot}/board",
  13. "C:/MCU/gcc-arm/arm-none-eabi/include",
  14. "C:/MCU/ChibiOS_21.11.3/os/**"
  15. ],
  16. "compilerPath": "C:/MCU/gcc-arm/bin/arm-none-eabi-gcc.exe",
  17. "forcedInclude": [],
  18. "cStandard": "gnu17",
  19. "cppStandard": "c++17",
  20. "intelliSenseMode": "windows-gcc-arm",
  21. "configurationProvider": "ms-vscode.makefile-tools",
  22. "browse": {
  23. "path": [
  24. "${workspaceRoot}",
  25. "${workspaceRoot}/inc",
  26. "${workspaceRoot}/cfg",
  27. "${workspaceRoot}/board",
  28. "C:/MCU/gcc-arm/arm-none-eabi/include",
  29. "C:/MCU/gcc-arm/lib/gcc/arm-none-eabi/**",
  30. "C:/MCU/ChibiOS_21.11.3/os/**"
  31. ],
  32. "limitSymbolsToIncludedHeaders": true,
  33. "databaseFilename": "${workspaceRoot}/.vscode/browse.vc.db"
  34. }
  35. }
  36. ]
  37. }