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

Oops. Need to pass layout by reference in order to capture the correct address. Took a while to find that. There maybe a better way to store all these configs

This commit is contained in:
sticilface
2020-11-06 22:33:01 +00:00
parent 0fb1ebc3c0
commit 745db9ab55
3 changed files with 19 additions and 20 deletions

View File

@ -75,7 +75,7 @@ public:
FSTools();
~FSTools();
bool attemptToMountFS(fs::FS & fs);
bool mountAlternativeFS( FST::FS_t type, const FST::layout layout, bool keepMounted = false );
bool mountAlternativeFS( FST::FS_t type, const FST::layout & layout, bool keepMounted = false );
bool mounted();
bool moveFS(fs::FS & destinationFS);
void reset();