From 2aa21ada27f47f94f3f39773d0bc5b2731e451a9 Mon Sep 17 00:00:00 2001 From: gemu2015 Date: Tue, 5 Jan 2021 16:36:45 +0100 Subject: [PATCH] fix esp8266 sdcard --- tasmota/xdrv_98_filesystem.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_98_filesystem.ino b/tasmota/xdrv_98_filesystem.ino index 1fadd6427..cbb533310 100644 --- a/tasmota/xdrv_98_filesystem.ino +++ b/tasmota/xdrv_98_filesystem.ino @@ -98,7 +98,7 @@ void UFSInit(void) { if (SD.begin(cs)) { #ifdef ESP8266 - ufsp = (FS*)&SD; + ufsp = &SDFS; #endif // ESP8266 #ifdef ESP32 ufsp = &SD;