From c12f164b5ffe26a42e8adcbc7317ec2f5cd46e10 Mon Sep 17 00:00:00 2001 From: losted Date: Mon, 7 May 2018 22:40:58 +0300 Subject: [PATCH] vs --- .vscode/arduino.json | 5 +++++ .vscode/c_cpp_properties.json | 21 +++++++++++++++++++++ backend.code-workspace | 7 +++++++ 3 files changed, 33 insertions(+) create mode 100644 .vscode/arduino.json create mode 100644 .vscode/c_cpp_properties.json create mode 100644 backend.code-workspace diff --git a/.vscode/arduino.json b/.vscode/arduino.json new file mode 100644 index 0000000..e3f069b --- /dev/null +++ b/.vscode/arduino.json @@ -0,0 +1,5 @@ +{ + "board": "esp8266:esp8266:generic", + "configuration": "CpuFrequency=80,FlashFreq=40,FlashMode=dio,UploadSpeed=115200,FlashSize=512K64,ResetMethod=ck,Debug=Disabled,DebugLevel=None____", + "sketch": "backend.ino" +} \ No newline at end of file diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..d993e16 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,21 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "/home/losted/.arduino15/packages/esp8266/hardware/esp8266/2.3.0-rc2/cores/esp8266" + ], + "browse": { + "limitSymbolsToIncludedHeaders": false, + "path": [ + "/home/losted/.arduino15/packages/esp8266/hardware/esp8266/2.3.0-rc2/cores/esp8266" + ] + }, + "intelliSenseMode": "clang-x64", + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++17" + } + ], + "version": 3 +} \ No newline at end of file diff --git a/backend.code-workspace b/backend.code-workspace new file mode 100644 index 0000000..362d7c2 --- /dev/null +++ b/backend.code-workspace @@ -0,0 +1,7 @@ +{ + "folders": [ + { + "path": "." + } + ] +} \ No newline at end of file