コード例 #1
0
 public CEMIFrameData(bool repeated, CEMIPriority priority, bool acknowledgeRequested, bool errorFlag, KnxAddress sourceAddress, sbyte[] destinationAddress, bool groupAddress, byte hopCount, byte dataLength, TPCI tcpi, byte counter, APCI apci, sbyte dataFirstByte, sbyte[] data, byte crc)
     : base(repeated, priority, acknowledgeRequested, errorFlag)
 {
     SourceAddress      = sourceAddress;
     DestinationAddress = destinationAddress;
     GroupAddress       = groupAddress;
     HopCount           = hopCount;
     DataLength         = dataLength;
     Tcpi          = tcpi;
     Counter       = counter;
     Apci          = apci;
     DataFirstByte = dataFirstByte;
     Data          = data;
     Crc           = crc;
 }
コード例 #2
0
ファイル: CEMIDataFrame.cs プロジェクト: JoshuaEllis1/plc4x
 public CEMIDataFrame(bool standardFrame, bool polling, bool notRepeated, bool notAckFrame, CEMIPriority priority, bool acknowledgeRequested, bool errorFlag, bool groupDestinationAddress, byte hopCount, byte extendedFrameFormat, KnxAddress sourceAddress, sbyte[] destinationAddress, byte dataLength, TPCI tcpi, byte counter, APCI apci, sbyte dataFirstByte, sbyte[] data)
 {
     StandardFrame           = standardFrame;
     Polling                 = polling;
     NotRepeated             = notRepeated;
     NotAckFrame             = notAckFrame;
     Priority                = priority;
     AcknowledgeRequested    = acknowledgeRequested;
     ErrorFlag               = errorFlag;
     GroupDestinationAddress = groupDestinationAddress;
     HopCount                = hopCount;
     ExtendedFrameFormat     = extendedFrameFormat;
     SourceAddress           = sourceAddress;
     DestinationAddress      = destinationAddress;
     DataLength              = dataLength;
     Tcpi          = tcpi;
     Counter       = counter;
     Apci          = apci;
     DataFirstByte = dataFirstByte;
     Data          = data;
 }