1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-29 16:03:14 +03:00

Update FSTools.cpp

Add yield in between file copy
This commit is contained in:
sticilface
2020-11-20 20:52:13 +00:00
committed by GitHub
parent 7db7ab8359
commit 9f80841319

View File

@ -245,6 +245,7 @@ bool FSTools::_copyFS(FS & sourceFS, FS & destFS)
} }
destFile.close(); destFile.close();
sourceFile.close(); sourceFile.close();
yield();
} }
}); });