From d27250ec119932bcc8cd78eef2d8d4ff0903d819 Mon Sep 17 00:00:00 2001 From: Allen Hill Date: Sat, 19 Aug 2023 20:31:31 -0400 Subject: [PATCH] Add vscode settings --- .vscode/c_cpp_properties.json | 33 +++++++++++++++++++++++++++++++++ .vscode/settings.json | 3 +++ 2 files changed, 36 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..cec5e40 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,33 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": [ + "${workspaceFolder}/**", + "${APPDATA}\\..\\Local\\Arduino15\\packages\\arduino\\tools\\avr-gcc\\7.3.0-atmel3.6.1-arduino7\\avr\\include\\**" + ], + "defines": [], + "windowsSdkVersion": "8.1", + "compilerPath": "${APPDATA}\\..\\Local\\Arduino15\\packages\\arduino\\tools\\avr-gcc\\7.3.0-atmel3.6.1-arduino7\\bin\\avr-gcc.exe", + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "${default}", + "compilerArgs": [], + "configurationProvider": "ms-vscode.makefile-tools" + }, + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "compilerPath": "/usr/local/bin/avr-gcc", + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "${default}", + "compilerArgs": [], + "configurationProvider": "ms-vscode.makefile-tools" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..23fd35f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.formatOnSave": true +} \ No newline at end of file