Add IntelliSense configuration.

This commit is contained in:
giomba 2022-10-08 15:12:37 +02:00
parent a3fc600996
commit a49143de8f
1 changed files with 18 additions and 0 deletions

18
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -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
}