Switched to native ESP32 webserver

- new status API
- webdav without crashing
This commit is contained in:
Martin Bauer
2020-06-20 19:28:34 +02:00
parent e929c8d3d4
commit fc469f47a6
8 changed files with 385 additions and 111 deletions

View File

@@ -74,6 +74,16 @@ namespace portablefs
{
return SPIFFS.mkdir(name);
}
inline size_t usedBytes()
{
return SPIFFS.usedBytes();
}
inline size_t totalBytes()
{
return SPIFFS.totalBytes();
}
} // namespace portablefs