-
Notifications
You must be signed in to change notification settings - Fork 81
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 #330 from joelkoz/SensESP-v1.0-RC1
First code complete set for SensESP v1.0
- Loading branch information
Showing
4,092 changed files
with
305,478 additions
and
32,170 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,2 +1,3 @@ | ||
--- | ||
BasedOnStyle: Google | ||
IndentWidth: 2 |
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
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
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
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,4 @@ | ||
# CI directory contents | ||
|
||
This directory contains files required for running the Continuous Integration tests in GitHub. | ||
It is not required for other uses and should be ignored unless you want to modify the CI functionality. |
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,18 @@ | ||
; CI platformio.ini for d1_mini | ||
|
||
[env] | ||
; Global data for all [env:***] | ||
framework = arduino | ||
lib_ldf_mode = deep | ||
monitor_speed = 115200 | ||
lib_deps = ${PROJDIR} | ||
|
||
[env:d1_mini] | ||
platform = espressif8266 | ||
board = d1_mini | ||
board_build.ldscript = eagle.flash.4m1m.ld | ||
build_flags = | ||
-Wall | ||
-Wno-reorder | ||
-D LED_BUILTIN=2 | ||
board_build.f_cpu = 160000000L |
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,17 @@ | ||
; CI platformio.ini for d1_mini | ||
|
||
[env] | ||
; Global data for all [env:***] | ||
framework = arduino | ||
lib_ldf_mode = deep | ||
monitor_speed = 115200 | ||
lib_deps = ${PROJDIR} | ||
|
||
[env:esp32dev] | ||
platform = espressif32 | ||
board = esp32dev | ||
build_unflags = -Werror=reorder | ||
board_build.partitions = min_spiffs.csv | ||
monitor_filters = esp32_exception_decoder | ||
build_flags = | ||
-D LED_BUILTIN=2 |
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 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
# assume this command is always run from the project root directory | ||
|
||
PROJDIR=$(pwd) | ||
|
||
# replace the | ||
sed -e "s|\${PROJDIR}|$PROJDIR|" ci/platformio-${CI_TARGET_DEVICE}.ini > ci/platformio.ini | ||
|
||
# the example to build comes from $PLATFORMIO_CI_SRC | ||
|
||
pio ci -c ci/platformio.ini |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.