Refactor TM handling #450

Merged
muellerr merged 47 commits from refactor_tm_handling into develop 2023-03-11 15:05:22 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit c8fe1b1359 - Show all commits

View File

@ -28,7 +28,7 @@ ReturnValue_t PersistentLogTmStoreTask::performOperation(uint8_t opCode) {
someonesBusy = true;
}
if (not someonesBusy) {
TaskFactory::delayTask(5);
TaskFactory::delayTask(10);
}
}
}

View File

@ -15,7 +15,7 @@ ReturnValue_t PersistentSingleTmStoreTask::performOperation(uint8_t opCode) {
}
bool busy = handleOneStore(storeWithQueue);
if (not busy) {
TaskFactory::delayTask(5);
TaskFactory::delayTask(10);
}
}
}