v4.0.0 #699

Merged
muellerr merged 84 commits from v4.0.0-dev into main 2023-06-22 17:43:31 +02:00
3 changed files with 2 additions and 3 deletions
Showing only changes of commit 50327fb614 - Show all commits

View File

@ -48,7 +48,7 @@ ReturnValue_t PersistentLogTmStoreTask::performOperation(uint8_t opCode) {
} else {
// TODO: Would be best to remove this, but not delaying here can lead to evil issues.
// Polling the PAPB of the PTME core too often leads to scheuduling issues.
TaskFactory::delayTask(2);
// TaskFactory::delayTask(2);
}
}
}

View File

@ -30,7 +30,7 @@ ReturnValue_t PersistentSingleTmStoreTask::performOperation(uint8_t opCode) {
} else {
// TODO: Would be best to remove this, but not delaying here can lead to evil issues.
// Polling the PAPB of the PTME core too often leads to scheuduling issues.
TaskFactory::delayTask(2);
// TaskFactory::delayTask(2);
}
}
}

View File

@ -39,7 +39,6 @@ bool TmStoreTaskBase::handleOneStore(PersistentTmStoreWithTmQueue& store,
}
// Dump TMs
if (store.getState() == PersistentTmStore::State::DUMPING) {
sif::debug << "handling dump" << std::endl;
if (handleOneDump(store, dumpContext, dumpPerformed) != returnvalue::OK) {
return result;
}