eive-obsw/mission/tmtc/PersistentSingleTmStoreTask.cpp

18 lines
721 B
C++
Raw Normal View History

2023-03-09 17:44:05 +01:00
#include <fsfw/tasks/TaskFactory.h>
#include <mission/tmtc/PersistentSingleTmStoreTask.h>
PersistentSingleTmStoreTask::PersistentSingleTmStoreTask(object_id_t objectId,
StorageManagerIF& ipcStore,
PersistentTmStoreWithTmQueue& tmStore,
VirtualChannel& channel)
2023-03-09 19:42:20 +01:00
: TmStoreTaskBase(objectId, ipcStore, channel), storeWithQueue(tmStore) {}
2023-03-09 17:44:05 +01:00
ReturnValue_t PersistentSingleTmStoreTask::performOperation(uint8_t opCode) {
while (true) {
2023-03-09 19:42:20 +01:00
bool busy = handleOneStore(storeWithQueue);
if (not busy) {
2023-03-09 17:44:05 +01:00
TaskFactory::delayTask(5);
}
}
}