Index: sources/canbus/MessageInterpreter.cpp =================================================================== diff -u -r79e076cece4ba503be6c3834eb68d1e5cb1b882f -r4a67c01045f365be38f1a12a8572c0070d343e1e --- sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision 79e076cece4ba503be6c3834eb68d1e5cb1b882f) +++ sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision 4a67c01045f365be38f1a12a8572c0070d343e1e) @@ -79,7 +79,7 @@ // because the isValidMessage is catching errors. // only is checking here for developer safety if logic has changed. if ( ! ok ) return false; - // coco end + // disabled coco end emit didActionReceive(tModel.data()); logReceivedMessage(tModel); DEBUG_SIGNAL(vIdCheck, typeid(TModel).name()) @@ -290,7 +290,7 @@ case Gui::GuiActionType::ID_AlarmClearedConditionReq : INTERPRET_TRANSMIT_MESSAGE(AlarmClearedConditionRequestData ); break; case Gui::GuiActionType::ID_AlarmActiveListReq : INTERPRET_TRSMT_MT_MESSAGE(AlarmActiveListRequestData ); break; case Gui::GuiActionType::ID_AlarmTriggered : INTERPRET_TRANSMIT_MESSAGE(AlarmTriggeredRequestData ); break; - // coco end + // disabled coco end default: QString mActionIdHexString = Format::toHexString(vActionId); LOG_DEBUG(tr("Unknown transmit Message with ID '%1'").arg(mActionIdHexString)); @@ -525,7 +525,7 @@ // disabled coco begin validated: Manually tested. This model class is a placeholder for the message 63(0x3F00) and there is no use case for this now. case Gui::GuiActionType::ID_AlarmClearedConditionRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AlarmClearedConditionRsp ); break; case Gui::GuiActionType::ID_AlarmActiveListRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AlarmActiveListRsp ); break; - // coco end + // disabled coco end // unhandled messages: these will only be logged as received message // there has nothing been defined for these messages. @@ -619,7 +619,7 @@ ok = GetValue(vMessage.data, index, mCanBUSFaultCount); // disabled coco begin validated : developer safety if for any reason length of CanBUSFaultCount set to 0 if (ok) { - // coco end + // disabled coco end vData += mCanBUSFaultCount.value; } return ok;