mirror of https://github.com/arendst/Tasmota.git
Merge branch 'development' into pre-release-9.4.0
This commit is contained in:
commit
e6e00c80cc
|
@ -1155,7 +1155,7 @@ void Every250mSeconds(void)
|
|||
}
|
||||
#endif // ESP8266
|
||||
char version[50];
|
||||
snprintf_P(version, sizeof(version), PSTR("%s-%s"), TasmotaGlobal.image_name, TasmotaGlobal.version);
|
||||
snprintf_P(version, sizeof(version), PSTR("%s%s"), TasmotaGlobal.version, TasmotaGlobal.image_name);
|
||||
AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_UPLOAD "%s %s"), TasmotaGlobal.mqtt_data, version);
|
||||
WiFiClient OTAclient;
|
||||
ota_result = (HTTP_UPDATE_FAILED != ESPhttpUpdate.update(OTAclient, TasmotaGlobal.mqtt_data, version));
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
#include <SPI.h>
|
||||
#ifdef USE_SDCARD
|
||||
#include <SD.h>
|
||||
#include <SDFAT.h>
|
||||
#include <SdFat.h>
|
||||
#endif // USE_SDCARD
|
||||
#endif // ESP8266
|
||||
#ifdef ESP32
|
||||
|
|
Loading…
Reference in New Issue