25 lines
615 B
JSON
25 lines
615 B
JSON
|
{
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "AVR",
|
||
|
"includePath": [
|
||
|
"${workspaceFolder}/**",
|
||
|
"/usr/avr/include"
|
||
|
],
|
||
|
"defines": [],
|
||
|
"compilerPath": "/usr/bin/avr-gcc",
|
||
|
"cStandard": "c11",
|
||
|
"cppStandard": "c++17",
|
||
|
"intelliSenseMode": "gcc-x64",
|
||
|
"compilerArgs": [
|
||
|
"-mmcu=atmega328p",
|
||
|
"-Os",
|
||
|
"-Wall",
|
||
|
"-Wextra",
|
||
|
"-Wpedantic",
|
||
|
"-Werror"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"version": 4
|
||
|
}
|