Merge branch 'development' into pre-release-9.2.0

This commit is contained in:
Theo Arends 2020-12-08 16:21:08 +01:00
commit 83f76e2432
4 changed files with 8 additions and 5 deletions

View File

@ -33,6 +33,7 @@ All notable changes to this project will be documented in this file.
- IRremoteESP8266 library from v2.7.12 to v2.7.13
- Shelly Dimmer 1 and 2 stm32 firmware from v51.4 to v51.5
- Force bigger Thunk Stack if 4K RSA even without EC ciphers (#10075)
- mDNS has been disabled from all pre-compiled binaries to allow new features
### Fixed
- KNX ESP32 UDP mulicastpackage (#9811)

View File

@ -87,6 +87,7 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota
- Core library from v2.7.4.5 to v2.7.4.9
- IRremoteESP8266 library from v2.7.12 to v2.7.13
- Shelly Dimmer 1 and 2 stm32 firmware from v51.4 to v51.5
- mDNS has been disabled from all pre-compiled binaries to allow new features
- Platformio compiler option `no target align` enabled (#9749)
- Sonoff L1 color up scaling and color margin detection (#9545)
- MQTT Wifi connection timeout from 5000 to 200 mSec (#9886)

View File

@ -100,13 +100,14 @@ extra_scripts = pio-tools/strip-floats.py
[esp_defaults]
; *** remove undesired all warnings
build_unflags = -mtarget-align
-Wall
build_unflags = -Wall
; -mtarget-align
-Wdeprecated-declarations
build_flags = -mno-target-align
build_flags = -Wno-deprecated-declarations
; -mno-target-align
-mtarget-align
-free
-fipa-pta
-Wno-deprecated-declarations
-Wreturn-type
-D_IR_ENABLE_DEFAULT_=false
-DDECODE_HASH=true -DDECODE_NEC=true -DSEND_NEC=true

View File

@ -421,7 +421,7 @@
// #define USE_CCLOADER // Enable CCLoader FW upgrade tool (for CC25xx devices)
// -- mDNS ----------------------------------------
#define USE_DISCOVERY // Enable mDNS for the following services (+8k code or +23.5k code with core 2_5_x, +0.3k mem)
//#define USE_DISCOVERY // Enable mDNS for the following services (+8k code or +23.5k code with core 2_5_x, +0.3k mem)
#define WEBSERVER_ADVERTISE // Provide access to webserver by name <Hostname>.local/
#define MQTT_HOST_DISCOVERY // Find MQTT host server (overrides MQTT_HOST if found)