diff --git a/bin/XZG_20240505.full.bin b/bin/XZG_20240505.full.bin index 1d6940c..ea8f480 100644 Binary files a/bin/XZG_20240505.full.bin and b/bin/XZG_20240505.full.bin differ diff --git a/bin/XZG_20240505.ota.bin b/bin/XZG_20240505.ota.bin index 6fce8f6..aa3debc 100644 Binary files a/bin/XZG_20240505.ota.bin and b/bin/XZG_20240505.ota.bin differ diff --git a/src/web.cpp b/src/web.cpp index 80e6104..974104d 100644 --- a/src/web.cpp +++ b/src/web.cpp @@ -1683,7 +1683,7 @@ int currentLength = 0; // current size of written firmware void getEspUpdate(String esp_fw_url) { - LOGI("getEspUpdate: %s", esp_fw_url); + LOGI("getEspUpdate: %s", esp_fw_url.c_str()); HTTPClient clientWeb; WiFiClientSecure client; @@ -1694,7 +1694,7 @@ void getEspUpdate(String esp_fw_url) // Get file, just to check if each reachable int resp = clientWeb.GET(); - LOGD("Response: %s", resp); + LOGD("Response: %s", String(resp)); // If file is reachable, start downloading if (resp == HTTP_CODE_OK) {