warning print when memory check command fails

This commit is contained in:
Jakob Meier 2022-04-25 13:36:06 +02:00
parent 311ec7b194
commit 3e8429b34b
1 changed files with 3 additions and 0 deletions

View File

@ -426,6 +426,9 @@ ReturnValue_t PlocSupvHelper::handleCheckMemoryCommand() {
static_cast<size_t>(updateStatusReport.getNominalSize()),
supv::recv_timeout::UPDATE_STATUS_REPORT);
if (result != RETURN_OK) {
sif::warning
<< "PlocSupvHelper::handleCheckMemoryCommand: Failed to receive update status report"
<< std::endl;
return result;
}
result = handleExe(CRC_EXECUTION_TIMEOUT);