v1.12.0 #269

Merged
muellerr merged 493 commits from develop into main 2022-07-04 11:19:05 +02:00
Showing only changes of commit 9d4cb2ea8d - Show all commits

View File

@ -1595,6 +1595,16 @@ class ExecutionReport : public VerificationReport {
<< "Supervisor execution report status: MPSoC boot failed" << std::endl; << "Supervisor execution report status: MPSoC boot failed" << std::endl;
break; break;
} }
case StatusCode::SP_NOT_AVAILABLE: {
sif::warning
<< "Supervisor execution report status: SP not available" << std::endl;
break;
}
case StatusCode::SP_DATA_INSUFFICIENT: {
sif::warning
<< "Supervisor execution report status: SP data insufficient" << std::endl;
break;
}
default: default:
sif::warning << "ExecutionReport::printStatusInformation: Invalid status code: 0x" sif::warning << "ExecutionReport::printStatusInformation: Invalid status code: 0x"
<< std::hex << static_cast<uint16_t>(statusCode) << std::endl; << std::hex << static_cast<uint16_t>(statusCode) << std::endl;