slightly longer idle delays for store tasks
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
Robin Müller 2023-03-09 22:11:43 +01:00
parent 9cb7cefb85
commit c8fe1b1359
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ ReturnValue_t PersistentLogTmStoreTask::performOperation(uint8_t opCode) {
someonesBusy = true; someonesBusy = true;
} }
if (not someonesBusy) { 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); bool busy = handleOneStore(storeWithQueue);
if (not busy) { if (not busy) {
TaskFactory::delayTask(5); TaskFactory::delayTask(10);
} }
} }
} }