ardix/.vscode/c_cpp_properties.json

90 lines
2.6 KiB
JSON
Raw Normal View History

2020-06-07 16:49:03 +02:00
{
"configurations": [
{
"name": "atmega328p",
"defines": [
"DEBUG",
"ARCH=atmega328p",
"ARCH_ATMEGA328P"
2020-06-07 16:49:03 +02:00
],
"compilerPath": "/usr/bin/avr-gcc",
"cStandard": "gnu11",
"intelliSenseMode": "gcc-x86",
"includePath": [
"include"
],
"compilerArgs": [
"-mmcu=atmega328p",
"-nostdlib",
"-nodefaultlibs",
"-fno-builtin",
"-fpack-struct",
"-Wall",
"-Wstrict-prototypes",
"-Wredundant-decls",
"-Wnested-externs",
"-Wbad-function-cast",
"-Wshadow",
"-Wsign-compare",
"-Wfloat-equal",
"-Wunreachable-code",
"-Wwrite-strings",
"-Wconversion",
"-Waggregate-return",
"-Winline",
"-Wcast-align"
],
"browse": {
"path": [
"include",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true
}
},
{
"name": "at91sam3x8e",
"defines": [
"DEBUG",
"ARCH=at91sam3x8e",
"ARCH_AT91SAM3X8E"
],
"compilerPath": "/usr/bin/avr-gcc",
"cStandard": "c11",
"cppStandard": "gnu++14",
"intelliSenseMode": "gcc-arm",
"includePath": [
"./include"
],
"compilerArgs": [
"-mmcu=at91sam3x8e",
"-nostdlib",
"-nodefaultlibs",
"-fno-builtin",
"-fpack-struct",
"-Wall",
"-Wstrict-prototypes",
"-Wredundant-decls",
"-Wnested-externs",
"-Wbad-function-cast",
"-Wshadow",
"-Wsign-compare",
"-Wfloat-equal",
"-Wunreachable-code",
"-Wwrite-strings",
"-Wconversion",
"-Waggregate-return",
"-Winline",
"-Wcast-align"
],
"browse": {
"path": [
"./include",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true
}
2020-06-07 16:49:03 +02:00
}
],
"version": 4
}