This commit is contained in:
hugogogo
2025-03-03 20:45:44 +01:00
parent 90c91a198e
commit 6b033a3352
5 changed files with 74 additions and 6 deletions

24
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"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
}