GymPal/.vscode/c_cpp_properties.json

21 lines
555 B
JSON
Raw Normal View History

2022-12-02 10:42:42 +00:00
{
"configurations": [
{
"name": "AVR",
"includePath": [
"${workspaceFolder}/**",
"/lib/avr/include/**"
],
"defines": [],
"compilerPath": "/usr/bin/avr-gcc",
"cStandard": "gnu11",
2022-12-02 10:42:42 +00:00
"cppStandard": "gnu++14",
"intelliSenseMode": "gcc-avr",
2022-12-08 14:55:11 +00:00
"configurationProvider": "ms-vscode.makefile-tools",
"compilerArgs": [
"-mmcu=atmega328p"
]
2022-12-02 10:42:42 +00:00
}
],
"version": 4
}