* 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

@ -817,6 +817,9 @@ public:
#if defined(NRF52_PLATFORM)
_identity_store = new IdentityStore(fs, "");
#elif defined(RP2040_PLATFORM)
_identity_store = new IdentityStore(fs, "/identity");
_identity_store->begin();
#else
_identity_store = new IdentityStore(fs, "/identity");
#endif