this is odd
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2023-09-25 16:44:10 +02:00
parent 0d0a98220a
commit a2246f9d3d

View File

@ -1223,14 +1223,14 @@ void PlocMpsocHandler::dataReceived(ActionId_t actionId, const uint8_t* data, ui
void PlocMpsocHandler::completionSuccessfulReceived(ActionId_t actionId) { void PlocMpsocHandler::completionSuccessfulReceived(ActionId_t actionId) {
if (actionId != supv::EXE_REPORT) { if (actionId != supv::EXE_REPORT) {
sif::warning << "PlocMPSoCHandler::completionSuccessfulReceived: Did not expect this action " sif::warning << "PlocMPSoCHandler::completionSuccessfulReceived: Did not expect the action "
<< "ID " << actionId << std::endl; << "ID " << actionId << std::endl;
return; return;
} }
switch (powerState) { switch (powerState) {
case PowerState::PENDING_STARTUP: case PowerState::PENDING_STARTUP:
case PowerState::PENDING_SHUTDOWN: { case PowerState::PENDING_SHUTDOWN: {
// sif::debug << "power switching done" << std::endl; sif::debug << "power switching done" << std::endl;
powerState = PowerState::DONE; powerState = PowerState::DONE;
break; break;
} }