AVR-Template/.vscode/c_cpp_properties.json

25 lines
615 B
JSON
Raw Permalink Normal View History

2024-03-23 19:36:08 +01:00
{
"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
}