Skip to content

Instantly share code, notes, and snippets.

@ndomx
Last active January 11, 2024 19:59
Show Gist options
  • Save ndomx/2571a9e659bf7c4297e74dfec960a15e to your computer and use it in GitHub Desktop.
Save ndomx/2571a9e659bf7c4297e74dfec960a15e to your computer and use it in GitHub Desktop.
C/C++ configuration for AVR boards in VS Code
{
"name": "atmega328p",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"__AVR_ATmega328P__"
],
"compilerPath": "{path-to-avr-gcc}/avr-gcc",
"cStandard": "c99",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x86"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment