vscode setup

This commit is contained in:
Gennaro Tortone 2018-01-31 21:24:30 +01:00
parent 739136cbed
commit 8da33ec466
3 changed files with 24 additions and 0 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
.gcc-flags.json
.vscode
sonoff/user_config_override.h
build

7
.vscode/arduino.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"board": "esp8266:esp8266:generic",
"configuration": "CpuFrequency=80,ResetMethod=ck,CrystalFreq=26,FlashFreq=40,FlashMode=dout,FlashSize=1M0,LwIPVariant=Prebuilt,Debug=Disabled,DebugLevel=None____,UploadSpeed=115200",
"port": "/dev/ttyUSB0",
"sketch": "sonoff/sonoff.ino",
"output": "build"
}

16
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"configurations": [
{
"name": "Linux",
"browse": {
"limitSymbolsToIncludedHeaders": false,
"path": [
"/home/tortone/.arduino15/packages/esp8266/hardware",
"${workspaceRoot}"
]
},
"intelliSenseMode": "clang-x64"
}
],
"version": 3
}