Fix compiler version for intellisense.

This commit is contained in:
Marco 2022-05-27 02:18:20 +02:00
parent aaf8a9d501
commit 180f4625a8
2 changed files with 8 additions and 6 deletions

View File

@ -9,10 +9,10 @@
"defines": [ "defines": [
"__AVR_ATmega32U4__" "__AVR_ATmega32U4__"
], ],
"compilerPath": "/usr/bin/clang", "compilerPath": "/usr/bin/avr-gcc",
"cStandard": "c17", "cStandard": "c17",
"cppStandard": "c++14", "cppStandard": "c++14",
"intelliSenseMode": "linux-clang-x64" "intelliSenseMode": "linux-gcc-x64"
} }
], ],
"version": 4 "version": 4

View File

@ -2,6 +2,8 @@
"files.associations": { "files.associations": {
"io.h": "c", "io.h": "c",
"sfr_defs.h": "c", "sfr_defs.h": "c",
"string.h": "c" "string.h": "c",
"random": "c",
"math.h": "c"
} }
} }