From a49143de8f82815efefa9f9af41c707d55b6042a Mon Sep 17 00:00:00 2001 From: giomba Date: Sat, 8 Oct 2022 15:12:37 +0200 Subject: [PATCH] Add IntelliSense configuration. --- .vscode/c_cpp_properties.json | 18 ++++++++++++++++++ 1 file changed, 18 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..94ce7b6 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,18 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/avr/include" + ], + "defines": [ + "__AVR_ATmega328P__" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c17", + "intelliSenseMode": "linux-clang-x64" + } + ], + "version": 4 +} \ No newline at end of file