Skip to content

Instantly share code, notes, and snippets.

@vanceb
Created February 6, 2019 19:56
Show Gist options
  • Save vanceb/e9f5f997fd65a733887b68dfc074cb2a to your computer and use it in GitHub Desktop.
Save vanceb/e9f5f997fd65a733887b68dfc074cb2a to your computer and use it in GitHub Desktop.
vscode c_cpp_properties.json for STM32Cube Projects
{
"configurations": [
{
"name": "SNM32Cube",
"includePath": [
"${workspaceFolder}/**",
"/opt/gcc-arm-none-eabi/arm-none-eabi/include/**",
"/opt/gcc-arm-none-eabi/lib/gcc/arm-none-eabi/**"
],
"defines": [
"STM32L031xx",
"USE_HAL_DRIVER"
],
"intelliSenseMode": "gcc-x64",
"browse": {
"path": [
"${workspaceRoot}",
"/opt/gcc-arm-none-eabi"
],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
}
}
],
"version": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment