コード例 #1
0
ファイル: LPollData.cs プロジェクト: hongjinlin/plc4x
 public LPollData(bool frameType, bool notRepeated, CEMIPriority priority, bool acknowledgeRequested, bool errorFlag, KnxAddress sourceAddress, byte[] targetAddress, byte numberExpectedPollData)
     : base(frameType, notRepeated, priority, acknowledgeRequested, errorFlag)
 {
     SourceAddress          = sourceAddress;
     TargetAddress          = targetAddress;
     NumberExpectedPollData = numberExpectedPollData;
 }
コード例 #2
0
ファイル: CEMIFrame.cs プロジェクト: JoshuaEllis1/plc4x
 public CEMIFrame(bool repeated, CEMIPriority priority, bool acknowledgeRequested, bool errorFlag)
 {
     Repeated             = repeated;
     Priority             = priority;
     AcknowledgeRequested = acknowledgeRequested;
     ErrorFlag            = errorFlag;
 }
コード例 #3
0
ファイル: LDataFrame.cs プロジェクト: hongjinlin/plc4x
 public LDataFrame(bool frameType, bool notRepeated, CEMIPriority priority, bool acknowledgeRequested, bool errorFlag)
 {
     FrameType            = frameType;
     NotRepeated          = notRepeated;
     Priority             = priority;
     AcknowledgeRequested = acknowledgeRequested;
     ErrorFlag            = errorFlag;
 }
コード例 #4
0
 public LDataExtended(bool frameType, bool notRepeated, CEMIPriority priority, bool acknowledgeRequested, bool errorFlag, bool groupAddress, byte hopCount, byte extendedFrameFormat, KnxAddress sourceAddress, byte[] destinationAddress, Apdu apdu)
     : base(frameType, notRepeated, priority, acknowledgeRequested, errorFlag)
 {
     GroupAddress        = groupAddress;
     HopCount            = hopCount;
     ExtendedFrameFormat = extendedFrameFormat;
     SourceAddress       = sourceAddress;
     DestinationAddress  = destinationAddress;
     Apdu = apdu;
 }
コード例 #5
0
 public GroupObjectDescriptorRealisationTypeB(bool updateEnable, bool transmitEnable, bool segmentSelectorEnable, bool writeEnable, bool readEnable, bool communicationEnable, CEMIPriority priority, ComObjectValueType valueType)
 {
     UpdateEnable          = updateEnable;
     TransmitEnable        = transmitEnable;
     SegmentSelectorEnable = segmentSelectorEnable;
     WriteEnable           = writeEnable;
     ReadEnable            = readEnable;
     CommunicationEnable   = communicationEnable;
     Priority  = priority;
     ValueType = valueType;
 }
コード例 #6
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;
 }
コード例 #7
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;
 }
コード例 #8
0
 public CEMIFramePollingDataExt(bool repeated, CEMIPriority priority, bool acknowledgeRequested, bool errorFlag)
     : base(repeated, priority, acknowledgeRequested, errorFlag)
 {
 }
コード例 #9
0
 public LDataFrameACK(bool frameType, bool notRepeated, CEMIPriority priority, bool acknowledgeRequested, bool errorFlag)
     : base(frameType, notRepeated, priority, acknowledgeRequested, errorFlag)
 {
 }