mirror of https://github.com/arendst/Tasmota.git
parent
7b3ceb925f
commit
e4ebee738b
|
@ -2,7 +2,8 @@
|
||||||
* Change web Configure Module GPIO drop down list order for better readability
|
* Change web Configure Module GPIO drop down list order for better readability
|
||||||
* Fix showing Period Power in energy threshold messages
|
* Fix showing Period Power in energy threshold messages
|
||||||
* Fix ButtonRetain to not use default topic for clearing retain messages (#3737)
|
* Fix ButtonRetain to not use default topic for clearing retain messages (#3737)
|
||||||
* Add sleep to Nova Fitness SDS01X sensor (#2841, #3724)
|
* Add sleep to Nova Fitness SDS01X sensor (#2841, #3724, #3749)
|
||||||
|
* Add Analog input AD0 enabled to sonoff-sensors.bin (#3756, #3757)
|
||||||
*
|
*
|
||||||
* 6.2.1.2 20180906
|
* 6.2.1.2 20180906
|
||||||
* Fix KNX PA exception. Regression from 6.2.1 buffer overflow caused by subStr() (#3700, #3710)
|
* Fix KNX PA exception. Regression from 6.2.1 buffer overflow caused by subStr() (#3700, #3710)
|
||||||
|
|
|
@ -182,6 +182,7 @@ void CpuLoadLoop()
|
||||||
|
|
||||||
#if defined(ARDUINO_ESP8266_RELEASE_2_3_0) || defined(ARDUINO_ESP8266_RELEASE_2_4_0) || defined(ARDUINO_ESP8266_RELEASE_2_4_1)
|
#if defined(ARDUINO_ESP8266_RELEASE_2_3_0) || defined(ARDUINO_ESP8266_RELEASE_2_4_0) || defined(ARDUINO_ESP8266_RELEASE_2_4_1)
|
||||||
// All version before core 2.4.2
|
// All version before core 2.4.2
|
||||||
|
// https://github.com/esp8266/Arduino/issues/2557
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include <cont.h>
|
#include <cont.h>
|
||||||
|
@ -190,7 +191,6 @@ extern "C" {
|
||||||
|
|
||||||
void DebugFreeMem()
|
void DebugFreeMem()
|
||||||
{
|
{
|
||||||
// https://github.com/esp8266/Arduino/issues/2557
|
|
||||||
register uint32_t *sp asm("a1");
|
register uint32_t *sp asm("a1");
|
||||||
|
|
||||||
// snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_DEBUG "FreeRam %d, FreeStack %d, UnmodifiedStack %d (%s)"),
|
// snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_DEBUG "FreeRam %d, FreeStack %d, UnmodifiedStack %d (%s)"),
|
||||||
|
@ -213,7 +213,6 @@ extern "C" {
|
||||||
|
|
||||||
void DebugFreeMem()
|
void DebugFreeMem()
|
||||||
{
|
{
|
||||||
// https://github.com/esp8266/Arduino/issues/2557
|
|
||||||
register uint32_t *sp asm("a1");
|
register uint32_t *sp asm("a1");
|
||||||
|
|
||||||
snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_DEBUG "FreeRam %d, FreeStack %d (%s)"),
|
snprintf_P(log_data, sizeof(log_data), PSTR(D_LOG_DEBUG "FreeRam %d, FreeStack %d (%s)"),
|
||||||
|
|
|
@ -188,7 +188,7 @@ boolean Xdsp05(byte function)
|
||||||
if (FUNC_DISPLAY_INIT_DRIVER == function) {
|
if (FUNC_DISPLAY_INIT_DRIVER == function) {
|
||||||
EpdInitDriver();
|
EpdInitDriver();
|
||||||
}
|
}
|
||||||
else if (XDSP_04 == Settings.display_model) {
|
else if (XDSP_05 == Settings.display_model) {
|
||||||
|
|
||||||
if (!dsp_color) { dsp_color = COLORED; }
|
if (!dsp_color) { dsp_color = COLORED; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue