summaryrefslogtreecommitdiff
path: root/src/components/fs/FS.h
diff options
context:
space:
mode:
authorTim Keller <geekboy1011@gmail.com>2021-10-26 00:10:39 +0000
committerTim Keller <geekboy1011@gmail.com>2021-12-10 01:18:57 +0000
commit2e10b0fe645f74d0ab057ac11b96f4eb3fffc4ae (patch)
tree8cee9e49142948c4b24b0889139de3152b0abee0 /src/components/fs/FS.h
parentc1aa5a5ea7d5ecde63a786827a866312c04507f9 (diff)
Remove mount/unmount. No longer needed
Diffstat (limited to 'src/components/fs/FS.h')
-rw-r--r--src/components/fs/FS.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/components/fs/FS.h b/src/components/fs/FS.h
index e4df9566..60dd8e51 100644
--- a/src/components/fs/FS.h
+++ b/src/components/fs/FS.h
@@ -10,14 +10,9 @@ namespace Pinetime {
public:
FS(Pinetime::Drivers::SpiNorFlash&);
-
-
void Init();
void LVGLFileSystemInit();
- void Mount();
- void UnMount();
-
int FileOpen(lfs_file_t* file_p, const char* fileName, const int flags);
int FileClose(lfs_file_t* file_p);
int FileRead(lfs_file_t* file_p, uint8_t* buff, uint32_t size);
@@ -35,8 +30,13 @@ namespace Pinetime {
lfs_ssize_t GetFSSize();
int Stat(const char* path, lfs_info* info);
void VerifyResource();
- static size_t getSize(){return size;}
- static size_t getBlockSize(){return blockSize;}
+ static size_t getSize() {
+ return size;
+ }
+ static size_t getBlockSize() {
+ return blockSize;
+ }
+
private:
Pinetime::Drivers::SpiNorFlash& flashDriver;
@@ -65,7 +65,6 @@ namespace Pinetime {
static constexpr size_t startAddress = 0x0B4000;
static constexpr size_t size = 0x34C000;
static constexpr size_t blockSize = 4096;
-
bool resourcesValid = false;
const struct lfs_config lfsConfig;