Skip to content

Commit

Permalink
Fixed VS Code files.
Browse files Browse the repository at this point in the history
Used the standard VS Code support files. Fixing additions CppRunner plug in added automatically.
  • Loading branch information
BrentK-ADI committed Aug 14, 2024
1 parent efd6b60 commit 4447648
Show file tree
Hide file tree
Showing 3 changed files with 265 additions and 389 deletions.
104 changes: 51 additions & 53 deletions Examples/MAX32672/ADC_DMA_RMS/.vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,53 @@
{
"configurations": [
{
"name": "windows-gcc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"${default}"
],
"intelliSenseMode": "windows-gcc-x64",
"compilerPath": "C:/msys64/mingw64/bin/gcc.exe",
"browse": {
"path": [
"${default}"
]
},
"cStandard": "${default}",
"cppStandard": "${default}"
},
{
"name": "Linux",
"includePath": [
"${default}"
],
"defines": [
"${default}"
],
"intelliSenseMode": "gcc-arm",
"compilerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gcc",
"browse": {
"path": [
"${default}"
]
}
},
{
"name": "Mac",
"includePath": [
"${default}"
],
"defines": [
"${default}"
],
"intelliSenseMode": "gcc-arm",
"compilerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gcc",
"browse": {
"path": [
"${default}"
]
}
}
],
"version": 4
"configurations": [
{
"name": "Win32",
"includePath": [
"${default}"
],
"defines": [
"${default}"
],
"intelliSenseMode": "gcc-arm",
"compilerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gcc.exe",
"browse": {
"path": [
"${default}"
]
}
},
{
"name": "Linux",
"includePath": [
"${default}"
],
"defines": [
"${default}"
],
"intelliSenseMode": "gcc-arm",
"compilerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gcc",
"browse": {
"path": [
"${default}"
]
}
},
{
"name": "Mac",
"includePath": [
"${default}"
],
"defines": [
"${default}"
],
"intelliSenseMode": "gcc-arm",
"compilerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gcc",
"browse": {
"path": [
"${default}"
]
}
}
],
"version": 4
}
Loading

0 comments on commit 4447648

Please sign in to comment.