* DataStore, advert blob record format change

This commit is contained in:
Scott Powell 2025-06-06 21:35:54 +10:00
parent dd808ee6c7
commit 9c833486bf
5 changed files with 43 additions and 25 deletions

View file

@ -14,13 +14,13 @@ static uint32_t _atoi(const char* sp) {
#if defined(NRF52_PLATFORM) || defined(STM32_PLATFORM)
#include <InternalFileSystem.h>
DataStore store(InternalFS);
DataStore store(InternalFS, rtc_clock);
#elif defined(RP2040_PLATFORM)
#include <LittleFS.h>
DataStore store(LittleFS);
DataStore store(LittleFS, rtc_clock);
#elif defined(ESP32)
#include <SPIFFS.h>
DataStore store(SPIFFS);
DataStore store(SPIFFS, rtc_clock);
#endif
#ifdef ESP32