From 639289123a427798ab32861fef00febca95947be Mon Sep 17 00:00:00 2001 From: Gabriel Lima Date: Sun, 18 Jan 2026 21:59:38 -0300 Subject: [PATCH] Add c_cpp_properties.json --- .gitignore | 1 + .vscode/c_cpp_properties.json | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.gitignore b/.gitignore index e78c677..a3ffe38 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ !.vscode/launch.json !.vscode/extensions.json !.vscode/*.code-snippets +!.vscode/c_cpp_properties.json !*.code-workspace # Environment file diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..8bc6eb6 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,10 @@ +{ + "configurations": [ + { + "name": "ARM Cross", + "compileCommands": "${workspaceFolder}/build/compile_commands.json", + "intelliSenseMode": "linux-gcc-arm" + } + ], + "version": 4 +} \ No newline at end of file