Helpers.h
Go to the documentation of this file.
1 
23 #pragma once
24 
25 #include "FileSystem.h"
26 
27 namespace IFS
28 {
34 IFileSystem* createSpiffsFilesystem(Storage::Partition partition);
35 
41 IFileSystem* createFirmwareFilesystem(Storage::Partition partition);
42 
49 IFileSystem* createHybridFilesystem(Storage::Partition fwfsPartition, Storage::Partition spiffsPartition);
50 
51 } // namespace IFS
IFileSystem * createSpiffsFilesystem(Storage::Partition partition)
Create a SPIFFS filesystem.
IFileSystem * createHybridFilesystem(Storage::Partition fwfsPartition, Storage::Partition spiffsPartition)
Create a hybrid filesystem.
Definition: DirectoryTemplate.h:36
IFileSystem * createFirmwareFilesystem(Storage::Partition partition)
Create a firmware filesystem.
Represents a flash partition.
Definition: Partition.h:77