From 33c4af6dc387919978ef51e51b399f07ec6622a6 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sun, 31 May 2020 15:37:02 +0200 Subject: [PATCH] improve intellisense c++ properties --- .vscode/c_cpp_properties.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..1a82b50 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,24 @@ +{ + "configurations": [ + { + "name": "Arduino", + "includePath": [ + "${workspaceFolder}/**", + "/usr/share/arduino/hardware/arduino/avr/**", + "/usr/share/avr/avr/**", + "/usr/share/avr/lib/**", + "/usr/share/avr/lib/gcc/avr/8.3.0/include/**" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c11", + "cppStandard": "gnu++14", + "intelliSenseMode": "clang-x64", + "browse": { + "limitSymbolsToIncludedHeaders": true, + "databaseFilename": "" + } + } + ], + "version": 4 +} \ No newline at end of file