diff options
Diffstat (limited to 'picl-firmware/.vscode/c_cpp_properties.json')
| -rw-r--r-- | picl-firmware/.vscode/c_cpp_properties.json | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/picl-firmware/.vscode/c_cpp_properties.json b/picl-firmware/.vscode/c_cpp_properties.json index add3b91..b9c3363 100644 --- a/picl-firmware/.vscode/c_cpp_properties.json +++ b/picl-firmware/.vscode/c_cpp_properties.json @@ -4,11 +4,23 @@ "name": "AVR", "includePath": [ "${workspaceFolder}/**", - "/usr/avr/include/**" + "/usr/avr/include/**", + "/usr/include/**" + ], + "defines": [ + "__AVR_ATtiny24__" ], - "defines": ["__AVR_ATtiny24__"], "compilerPath": "/usr/bin/avr-gcc", "intelliSenseMode": "clang-x64" + }, + { + "name": "simAVR", + "includePath": [ + "${workspaceFolder}/**", + "/usr/include/**" + ], + "compilerPath": "/usr/bin/clang++", + "intelliSenseMode": "clang-x64" } ], "version": 4 |
