This repository has been archived by the owner on Oct 4, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.9.5 - Merge remote-tracking branch 'origin/dev'
- Loading branch information
Showing
27 changed files
with
3,826 additions
and
2,030 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
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 |
---|---|---|
|
@@ -18,3 +18,6 @@ node_modules | |
# project specfic | ||
scripts/stackdmp.txt | ||
firmware | ||
|
||
# firmware | ||
*.bin |
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 |
---|---|---|
|
@@ -4,16 +4,23 @@ | |
|
||
[platformio] | ||
default_envs = release | ||
;default_envs = debug | ||
; default_envs = debug | ||
|
||
[common] | ||
# From https://github.com/esp8266/Arduino/blob/master/tools/sdk/ld | ||
# eagle.flash.4m1m.ld = 1019 KB sketch, 1000 KB SPIFFS. 4KB EEPROM, 4KB RFCAL, 12KB WIFI stack, 2052 KB OTA & buffer | ||
# eagle.flash.4m2m.ld = same as above but with 2024 KB SPIFFS | ||
# eagle.flash.4m.ld = same as above but with no SPIFFS storage | ||
ldscript = eagle.flash.4m1m.ld | ||
|
||
; custom build options are: | ||
; -DMYESP_TIMESTAMP | ||
; -DTESTS | ||
; -DCRASH | ||
; -DFORCE_SERIAL | ||
; -DMYESP_DEBUG | ||
;custom_flags = -DFORCE_SERIAL -DMYESP_DEBUG | ||
; -DSENSOR_MQTT_USEID | ||
; custom_flags = -DFORCE_SERIAL -DMYESP_DEBUG -DEMSESP_SIMULATE | ||
custom_flags = | ||
|
||
# Available lwIP variants (macros): | ||
|
@@ -26,33 +33,28 @@ custom_flags = | |
# -DVTABLES_IN_FLASH | ||
# -DNO_GLOBAL_EEPROM | ||
# -DBEARSSL_SSL_BASIC | ||
# general_flags = -DNO_GLOBAL_EEPROM -DVTABLES_IN_FLASH -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH | ||
general_flags = -DNO_GLOBAL_EEPROM | ||
|
||
# From https://github.com/esp8266/Arduino/blob/master/tools/sdk/ld | ||
# eagle.flash.4m1m.ld = 1019 KB sketch, 1000 KB SPIFFS. 4KB EEPROM, 4KB RFCAL, 12KB WIFI stack, 2052 KB OTA & buffer | ||
# eagle.flash.4m2m.ld = same as above but with 2024 KB SPIFFS | ||
# eagle.flash.4m.ld = same as above but with no SPIFFS storage | ||
build_flags_4m1m = -Wl,-Teagle.flash.4m1m.ld | ||
build_flags = ${common.general_flags} ${common.build_flags_4m1m} | ||
build_flags = ${common.general_flags} -std=c++11 -fno-exceptions | ||
|
||
[env] | ||
framework = arduino | ||
;platform = [email protected] ; arduino core 2.5.2 | ||
platform = espressif8266 | ||
;platform = https://github.com/platformio/platform-espressif8266#develop | ||
;platform = https://github.com/platformio/platform-espressif8266#feature/stage | ||
board_build.ldscript = ${common.ldscript} | ||
lib_compat_mode = strict | ||
lib_deps = | ||
https://github.com/rlogiacco/CircularBuffer | ||
https://github.com/PaulStoffregen/OneWire | ||
https://github.com/me-no-dev/ESPAsyncWebServer | ||
https://github.com/me-no-dev/ESPAsyncUDP | ||
uuid-common@^1.1.0 | ||
uuid-log@^2.1.1 | ||
uuid-syslog@^2.0.4 ; https://github.com/nomis/mcu-uuid-syslog | ||
uuid-log@^2.1.1 | ||
uuid-syslog@^2.0.4 ; https://github.com/nomis/mcu-uuid-syslog | ||
[email protected] ; https://github.com/xoseperez/justwifi | ||
[email protected] ; https://github.com/marvinroger/async-mqtt-client | ||
[email protected] ; https://github.com/xoseperez/eeprom_rotate | ||
ArduinoJson@6.13.0 ; https://github.com/bblanchon/ArduinoJson | ||
ArduinoJson | ||
[email protected] ; https://github.com/me-no-dev/ESPAsyncTCP | ||
upload_speed = 921600 | ||
monitor_speed = 115200 | ||
|
@@ -112,3 +114,4 @@ build_flags = ${common.build_flags} ${common.custom_flags} | |
extra_scripts = | ||
pre:scripts/pre_script.py | ||
scripts/main_script.py | ||
|
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
Oops, something went wrong.