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

Add SPIFFS::end (#1657)

This commit is contained in:
Ivan Grokhotkov
2016-05-20 10:20:04 +08:00
parent 43fb139ed8
commit 5313c56f24
5 changed files with 26 additions and 1 deletions

View File

@ -63,6 +63,7 @@ public:
class FSImpl {
public:
virtual bool begin() = 0;
virtual void end() = 0;
virtual bool format() = 0;
virtual bool info(FSInfo& info) = 0;
virtual FileImplPtr open(const char* path, OpenMode openMode, AccessMode accessMode) = 0;