25 lines
674 B
JSON
25 lines
674 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "linux-avr-gcc",
|
|
"includePath": ["${workspaceFolder}/**", "/usr/lib/avr/include/**"],
|
|
"defines": [],
|
|
"mergeConfigurations": false,
|
|
"compilerPath": "/usr/bin/avr-gcc",
|
|
"cStandard": "gnu11",
|
|
"cppStandard": "gnu++14",
|
|
"intelliSenseMode": "linux-gcc-x64",
|
|
"compilerArgs": ["-mmcu=atmega328p", "-DF_CPU=16000000UL", "-Os"]
|
|
},
|
|
{
|
|
"name": "linux-gcc-x64",
|
|
"includePath": ["${workspaceFolder}/**"],
|
|
"compilerPath": "/usr/bin/gcc",
|
|
"intelliSenseMode": "linux-gcc-x64",
|
|
"compilerArgs": [""],
|
|
"mergeConfigurations": false
|
|
}
|
|
],
|
|
"version": 4
|
|
}
|