From 9f23151f7854b4575352624ff45f6933b398a6d1 Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Fri, 23 Dec 2022 20:03:58 +0100 Subject: [PATCH] Fix tasmota32-zbbrdgpro compile with core 2.0.6 (#17496) * Fix tasmota32-zbbrdgpro compile with core 2.0.6 * only ESP32 --- .../xdrv_23_zigbee_7_6_flash_fs.ino | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino b/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino index 034a2ff64..347fd0cad 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino @@ -27,7 +27,7 @@ /******************************************************************** ** Subfile implementation -** +** ** Takes a string point in Flash and turn it to a read-only file ********************************************************************/ @@ -107,6 +107,18 @@ public: return ""; } + #ifdef ESP32 + #if ESP_ARDUINO_VERSION > ESP_ARDUINO_VERSION_VAL(2, 0, 5) + bool seekDir(long position){ + // ignore + } + String getNextFileName(void) + { + // ignore + } + #endif + #endif // ESP32 + const char* name() const { return ""; }