We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd4c09d commit 6c98e07Copy full SHA for 6c98e07
src/ota/implementation/OTAEsp32.cpp
@@ -12,6 +12,11 @@
12
#if defined(ARDUINO_ARCH_ESP32) && OTA_ENABLED
13
#include "OTAEsp32.h"
14
#include <esp_ota_ops.h>
15
+#if defined __has_include
16
+ #if __has_include(<spi_flash_mmap.h>)
17
+ #include <spi_flash_mmap.h>
18
+ #endif
19
+#endif
20
#include <Update.h>
21
22
ESP32OTACloudProcess::ESP32OTACloudProcess(MessageStream *ms, Client* client)
0 commit comments