Skip to content

Commit

Permalink
Merge pull request #471 from pennam/esp32-3.0.0
Browse files Browse the repository at this point in the history
OTA: ESP32 fix build on core 3.0.0
  • Loading branch information
pennam authored Jun 4, 2024
2 parents dd4c09d + 6c98e07 commit b56e3bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ota/implementation/OTAEsp32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
#if defined(ARDUINO_ARCH_ESP32) && OTA_ENABLED
#include "OTAEsp32.h"
#include <esp_ota_ops.h>
#if defined __has_include
#if __has_include(<spi_flash_mmap.h>)
#include <spi_flash_mmap.h>
#endif
#endif
#include <Update.h>

ESP32OTACloudProcess::ESP32OTACloudProcess(MessageStream *ms, Client* client)
Expand Down

0 comments on commit b56e3bf

Please sign in to comment.