mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-27 14:42:18 +03:00
11 lines
263 B
C++
11 lines
263 B
C++
#include "EspFileSystem.h"
|
|
|
|
bool fileSystemInit() {
|
|
if (!FileFS.begin()) {
|
|
SerialPrint(F("E"), F("FS"), F("Init ERROR, may be FS was not flashed"));
|
|
return false;
|
|
}
|
|
SerialPrint(F("i"), F("FS"), F("Init completed"));
|
|
return true;
|
|
}
|