Files
42_EXT_03_42chips/.vscode/c_cpp_properties.json
hugogogo 6b033a3352 ex01 ok
2025-03-03 20:45:44 +01:00

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
}