#include #include PersistentSingleTmStoreTask::PersistentSingleTmStoreTask(object_id_t objectId, StorageManagerIF& ipcStore, PersistentTmStoreWithTmQueue& tmStore, VirtualChannel& channel, SdCardMountedIF& sdcMan) : TmStoreTaskBase(objectId, ipcStore, channel, sdcMan), storeWithQueue(tmStore) {} ReturnValue_t PersistentSingleTmStoreTask::performOperation(uint8_t opCode) { while (true) { if (not cyclicStoreCheck()) { continue; } bool busy = handleOneStore(storeWithQueue); if (not busy) { TaskFactory::delayTask(10); } } } void PersistentSingleTmStoreTask::initStoresIfPossible() {}