diff --git a/sonoff/_changelog.ino b/sonoff/_changelog.ino index cc698a386..a07a74af0 100644 --- a/sonoff/_changelog.ino +++ b/sonoff/_changelog.ino @@ -1,9 +1,13 @@ -/* 6.3.0.7 20181111 +/* 6.3.0.8 20181115 + * Stop enforcing flashmode dout. Still mandatory but this a chk for possible future flash corruption + * + * 6.3.0.7 20181111 * Fix wifi connection errors using wifi disconnect and ESP.reset instead of ESP.restart * Fix Sonoff Pow R2 and Sonoff S31 Serial interface hang caused by Sonoff Basic R2 driver delay implementation (and possibly core bug) * Change command WebSend Host header field from IP address to hostname (#4331) * Add to command WebSend option to send a direct path when command starts with a slash (#4329) * Consolidate LTrim into Trim + * Increase log buffer size from 512 to 520 to accommodate http sensor data (#4354) * * 6.3.0.6 20181110 * Change GUI Configure Module by using AJAX for data fetch to cut page size (and memory use) by 40% diff --git a/sonoff/sonoff.ino b/sonoff/sonoff.ino index ddf73a3c8..4263ffa48 100755 --- a/sonoff/sonoff.ino +++ b/sonoff/sonoff.ino @@ -2117,7 +2117,7 @@ void Every250mSeconds(void) if (90 == ota_state_flag) { // Allow MQTT to reconnect ota_state_flag = 0; if (ota_result) { - SetFlashModeDout(); // Force DOUT for both ESP8266 and ESP8285 +// SetFlashModeDout(); // Force DOUT for both ESP8266 and ESP8285 snprintf_P(mqtt_data, sizeof(mqtt_data), PSTR(D_JSON_SUCCESSFUL ". " D_JSON_RESTARTING)); } else { snprintf_P(mqtt_data, sizeof(mqtt_data), PSTR(D_JSON_FAILED " %s"), ESPhttpUpdate.getLastErrorString().c_str()); diff --git a/sonoff/sonoff_version.h b/sonoff/sonoff_version.h index 14eee4f25..9ddcef51c 100644 --- a/sonoff/sonoff_version.h +++ b/sonoff/sonoff_version.h @@ -20,7 +20,7 @@ #ifndef _SONOFF_VERSION_H_ #define _SONOFF_VERSION_H_ -#define VERSION 0x06030007 +#define VERSION 0x06030008 #define D_PROGRAMNAME "Sonoff-Tasmota" #define D_AUTHOR "Theo Arends" diff --git a/sonoff/xdrv_01_webserver.ino b/sonoff/xdrv_01_webserver.ino index 2c3f85d5e..a55fdd1fa 100644 --- a/sonoff/xdrv_01_webserver.ino +++ b/sonoff/xdrv_01_webserver.ino @@ -1544,7 +1544,7 @@ void HandleUploadLoop(void) upload_error = 4; // Program flash size is larger than real flash size return; } - upload.buf[2] = 3; // Force DOUT - ESP8285 +// upload.buf[2] = 3; // Force DOUT - ESP8285 } } }