-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from petobena/master
edit Config.h instead of config.h in WiFiSetup.cpp (because of error of platformio build)
- Loading branch information
Showing
396 changed files
with
24,027 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.pio/ | ||
.pioenvs | ||
.piolibdeps | ||
.clang_complete | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bef09d0221417c7fa970df5de6bc979deed767c9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# http://clang.llvm.org/docs/ClangFormatStyleOptions.html | ||
|
||
BasedOnStyle: Google | ||
Standard: Cpp03 | ||
AllowShortFunctionsOnASingleLine: Empty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sh text eol=lf |
14 changes: 14 additions & 0 deletions
14
.pio/libdeps/development/ArduinoJson_ID64/.github/ISSUE_TEMPLATE.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!-- | ||
Before opening an issue, please read the FAQ: | ||
https://arduinojson.org/faq/ | ||
Please provide all the relevant information: | ||
* good title | ||
* short description of the problem | ||
* target platform | ||
* compiler model and version | ||
* MVCE (https://stackoverflow.com/help/mcve) | ||
* compiler output | ||
Good questions get fast answers! | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.DS_Store | ||
/.idea | ||
/build | ||
/bin | ||
/lib | ||
/sftp-config.json | ||
.tags | ||
.tags_sorted_by_file | ||
/fuzzing/*_fuzzer | ||
/fuzzing/*_fuzzer.options | ||
/fuzzing/*_fuzzer_seed_corpus.zip | ||
.vs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"name": "ArduinoJson", | ||
"keywords": [ | ||
"json", | ||
"rest", | ||
"http", | ||
"web" | ||
], | ||
"description": "An elegant and efficient JSON library for embedded systems", | ||
"homepage": "https://arduinojson.org/?utm_source=meta&utm_medium=library.json", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bblanchon/ArduinoJson.git" | ||
}, | ||
"version": "6.10.0", | ||
"authors": [ | ||
{ | ||
"email": null, | ||
"url": "https://blog.benoitblanchon.fr", | ||
"maintainer": false, | ||
"name": "Benoit Blanchon" | ||
} | ||
], | ||
"frameworks": [ | ||
"arduino" | ||
], | ||
"platforms": [ | ||
"atmelavr", | ||
"atmelsam", | ||
"espressif32", | ||
"espressif8266", | ||
"intel_arc32", | ||
"microchippic32", | ||
"nordicnrf51", | ||
"nordicnrf52", | ||
"ststm32", | ||
"ststm8", | ||
"teensy", | ||
"timsp430" | ||
], | ||
"export": { | ||
"exclude": [ | ||
"fuzzing", | ||
"scripts", | ||
"test", | ||
"third-party" | ||
] | ||
}, | ||
"id": 64 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.github/ | ||
examples/ | ||
fuzzing/ | ||
scripts/ | ||
test/ | ||
third-party/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
sudo: false | ||
language: cpp | ||
matrix: | ||
include: | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-4.4'] | ||
env: SCRIPT=test _CC=gcc-4.4 _CXX=g++-4.4 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-4.6'] | ||
env: SCRIPT=test _CC=gcc-4.6 _CXX=g++-4.6 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-4.7'] | ||
env: SCRIPT=test _CC=gcc-4.7 _CXX=g++-4.7 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-4.8'] | ||
env: SCRIPT=test _CC=gcc-4.8 _CXX=g++-4.8 SANITIZE=address | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-4.9'] | ||
env: SCRIPT=test _CC=gcc-4.9 _CXX=g++-4.9 SANITIZE=leak | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-5'] | ||
env: SCRIPT=test _CC=gcc-5 _CXX=g++-5 # SANITIZE=undefined | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-6'] | ||
env: SCRIPT=test _CC=gcc-6 _CXX=g++-6 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-7'] | ||
env: SCRIPT=test _CC=gcc-7 _CXX=g++-7 | ||
- addons: | ||
apt: | ||
packages: ['g++-arm-linux-gnueabihf'] | ||
env: SCRIPT=build _CC=arm-linux-gnueabihf-gcc _CXX=arm-linux-gnueabihf-g++ | ||
- env: SCRIPT=test _CC=clang _CXX=clang++ | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5'] | ||
packages: ['clang-3.5'] | ||
env: SCRIPT=test _CC=clang-3.5 _CXX=clang++-3.5 SANITIZE=address | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-precise-3.6'] | ||
packages: ['clang-3.6'] | ||
env: SCRIPT=test _CC=clang-3.6 _CXX=clang++-3.6 SANITIZE=leak | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-precise-3.7'] | ||
packages: ['clang-3.7'] | ||
env: SCRIPT=test _CC=clang-3.7 _CXX=clang++-3.7 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-precise-3.8'] | ||
packages: ['clang-3.8'] | ||
env: SCRIPT=test _CC=clang-3.8 _CXX=clang++-3.8 SANITIZE=undefined | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-trusty-3.9'] | ||
packages: ['clang-3.9'] | ||
env: SCRIPT=test _CC=clang-3.9 _CXX=clang++-3.9 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-trusty-4.0'] | ||
packages: ['clang-4.0'] | ||
env: SCRIPT=test _CC=clang-4.0 _CXX=clang++-4.0 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-trusty-5.0'] | ||
packages: ['clang-5.0'] | ||
env: SCRIPT=test _CC=clang-5.0 _CXX=clang++-5.0 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-trusty-6.0'] | ||
packages: ['clang-6.0'] | ||
env: SCRIPT=test _CC=clang-6.0 _CXX=clang++-6.0 | ||
- env: SCRIPT=coverage | ||
- os: osx | ||
osx_image: xcode7.3 | ||
env: SCRIPT=test | ||
- os: osx | ||
osx_image: xcode8.3 | ||
env: SCRIPT=test | ||
- os: osx | ||
osx_image: xcode9.4 | ||
env: SCRIPT=test | ||
- os: osx | ||
osx_image: xcode10 | ||
env: SCRIPT=test SANITIZE=address | ||
- env: SCRIPT=arduino VERSION=1.6.7 BOARD=arduino:avr:uno | ||
- env: SCRIPT=arduino VERSION=1.8.2 BOARD=arduino:samd:mkr1000 | ||
- env: SCRIPT=platformio BOARD=uno | ||
- env: SCRIPT=platformio BOARD=esp01 | ||
- addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test','llvm-toolchain-trusty-6.0'] | ||
packages: ['clang-6.0','llvm-6.0'] | ||
env: SCRIPT=fuzz CLANG=6.0 | ||
cache: | ||
directories: | ||
- "~/.platformio" | ||
- "fuzzing/json_corpus" | ||
- "fuzzing/msgpack_corpus" | ||
script: scripts/travis/$SCRIPT.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// ArduinoJson - arduinojson.org | ||
// Copyright Benoit Blanchon 2014-2019 | ||
// MIT License | ||
|
||
#include "src/ArduinoJson.h" |
Oops, something went wrong.