v4.0.0 #699

Merged
muellerr merged 84 commits from v4.0.0-dev into main 2023-06-22 17:43:31 +02:00
29 changed files with 411 additions and 432 deletions
Showing only changes of commit 9c0744ae02 - Show all commits

2
fsfw

Submodule fsfw updated: 0a977ea688...74602d113c

View File

@ -93,7 +93,8 @@ ReturnValue_t CfdpHandler::handleCfdpPacket(TmTcMessage& msg) {
return INVALID_PDU_FORMAT;
}
if (not FileDirectiveReader::checkFileDirective(pduDataField[0])) {
sif::error << "CfdpHandler: Invalid PDU directive field " << pduDataField[0] << std::endl;
sif::error << "CfdpHandler: Invalid PDU directive field " << static_cast<int>(pduDataField[0])
<< std::endl;
return INVALID_DIRECTIVE_FIELD;
}
auto directive = static_cast<FileDirective>(pduDataField[0]);