From eca54798958345b85680318aa8763226e3fafc0e Mon Sep 17 00:00:00 2001 From: "Deomid \"rojer\" Ryabkov" Date: Sat, 6 Aug 2022 21:58:25 +0100 Subject: [PATCH] Update for OTA changes https://github.com/cesanta/mongoose-os/issues/564 --- platforms/esp32xx/esp32xx_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/esp32xx/esp32xx_main.c b/platforms/esp32xx/esp32xx_main.c index aabd248ca..d6304a17c 100644 --- a/platforms/esp32xx/esp32xx_main.c +++ b/platforms/esp32xx/esp32xx_main.c @@ -41,7 +41,7 @@ #include "esp32xx_debug.h" #ifdef MGOS_HAVE_OTA_COMMON -#include "esp32_updater.h" +#include "esp32xx_updater.h" #endif #if defined(MGOS_ESP32) @@ -58,7 +58,7 @@ enum mgos_init_result mgos_freertos_pre_init(void) { srand(esp_random()); /* esp_random() uses HW RNG */ #ifdef MGOS_HAVE_OTA_COMMON - esp32_updater_early_init(); + esp32xx_updater_early_init(); #endif r = esp32xx_debug_init();