* 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 files changed
+9 -1

No files matched your search

+3
View File
@@ -295,6 +295,9 @@ public:
#if defined(NRF52_PLATFORM)
IdentityStore store(fs, "");
#elif defined(RP2040_PLATFORM)
IdentityStore store(fs, "/identity");
store.begin();
#else
IdentityStore store(fs, "/identity");
#endif