8 #ifndef COMPONENTS_CPP_UTILS_FATFS_VFS_H_
9 #define COMPONENTS_CPP_UTILS_FATFS_VFS_H_
12 #include <esp_vfs_fat.h>
13 #include <wear_levelling.h>
44 FATFS_VFS(std::string mountPath, std::string partitionName);
51 wl_handle_t m_wl_handle;
52 std::string m_mountPath;
53 std::string m_partitionName;
void mount()
Mount the FAT file system into VFS. The FAT file system found in the partition is mounted into the VF...
Definition: FATFS_VFS.cpp:45
void unmount()
Unmount a previously mounted file system.
Definition: FATFS_VFS.cpp:67
FATFS_VFS(std::string mountPath, std::string partitionName)
Constructor.
Definition: FATFS_VFS.cpp:28
Provide access to the FAT file system on SPI flash. The FATFS_VFS file system needs a partition defin...
Definition: FATFS_VFS.h:42
void setMaxFiles(int maxFiles)
Set the allowable number of concurrently open files.
Definition: FATFS_VFS.cpp:58