events when dump is done
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit

This commit is contained in:
2023-03-10 19:01:31 +01:00
parent 127a8e6124
commit 4257e1d918
14 changed files with 105 additions and 55 deletions

View File

@ -15,15 +15,15 @@ ReturnValue_t PersistentLogTmStoreTask::performOperation(uint8_t opCode) {
}
bool someonesBusy = false;
bool busy = false;
busy = handleOneStore(stores.okStore, tcHandlingCd);
busy = handleOneStore(stores.okStore, persTmStore::DUMP_OK_STORE_DONE);
if (busy) {
someonesBusy = true;
}
busy = handleOneStore(stores.notOkStore, tcHandlingCd);
busy = handleOneStore(stores.notOkStore, persTmStore::DUMP_NOK_STORE_DONE);
if (busy) {
someonesBusy = true;
}
busy = handleOneStore(stores.miscStore, tcHandlingCd);
busy = handleOneStore(stores.miscStore, persTmStore::DUMP_MISC_STORE_DONE);
if (busy) {
someonesBusy = true;
}