* RP2040 IdentityStore begin(), to ensure mkdir()

This commit is contained in:
Scott Powell 2025-04-22 15:26:04 +10:00
parent 2ba3f42f30
commit a87b5231cc
5 changed files with 9 additions and 1 deletions

View file

@ -889,6 +889,7 @@ void setup() {
LittleFS.begin();
fs = &LittleFS;
IdentityStore store(LittleFS, "/identity");
store.begin();
#elif defined(ESP32)
SPIFFS.begin(true);
fs = &SPIFFS;