mirror of https://github.com/arendst/Tasmota.git
6.3.0.8 Stop enforcing dout
6.3.0.8 20181115 * Stop enforcing flashmode dout. Still mandatory but this a chk for possible future flash corruption
This commit is contained in:
parent
222ec13f80
commit
877771c90a
|
@ -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%
|
||||
|
|
|
@ -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());
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue