pause the tasks waiting for a reboot
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good
This commit is contained in:
parent
8105e5f689
commit
988da377b1
@ -200,13 +200,16 @@ void EiveSystem::i2cRecoveryLogic() {
|
||||
TaskFactory::delayTask(500);
|
||||
// We already tried an I2C recovery but the bus is still broken.
|
||||
// Send reboot request to core controller.
|
||||
ReturnValue_t result = sendSelfRebootCommand();
|
||||
if(result != returnvalue::OK) {
|
||||
result = sendSelfRebootCommand();
|
||||
if (result != returnvalue::OK) {
|
||||
sif::error << "Sending a reboot command has failed" << std::endl;
|
||||
}
|
||||
// If the previous operation failed, it should be re-attempted the next task cycle.
|
||||
return;
|
||||
}
|
||||
// Wait for reboot to be done.
|
||||
TaskFactory::delayTask(3000);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (not isInTransition and performI2cReboot) {
|
||||
@ -304,11 +307,14 @@ void EiveSystem::pdecRecoveryLogic() {
|
||||
TaskFactory::delayTask(500);
|
||||
// Send reboot command.
|
||||
ReturnValue_t result = sendSelfRebootCommand();
|
||||
if(result != returnvalue::OK) {
|
||||
if (result != returnvalue::OK) {
|
||||
sif::error << "Sending a reboot command has failed" << std::endl;
|
||||
// If the previous operation failed, it should be re-attempted the next task cycle.
|
||||
ptmeResetWasAttemptedCd.resetTimer();
|
||||
}
|
||||
// We are done / about to reboot. Delay the rest of the time, graceful reboot takes some
|
||||
// time.
|
||||
TaskFactory::delayTask(3000);
|
||||
return;
|
||||
} else {
|
||||
// Try one full PDEC reset.
|
||||
|
Loading…
Reference in New Issue
Block a user