Пример #1
0
    def __init__(self, key_prefix, count=0, data=None, offset=0):

        EIEIOWithPayloadDataMessage.__init__(
            self, EIEIODataHeader(EIEIOType.KEY_PAYLOAD_16_BIT,
                                  prefix=key_prefix, is_time=True,
                                  count=count),
            data, offset)
Пример #2
0
 def __init__(self, key_prefix, payload_prefix, count=0, data=None,
              offset=0):
     EIEIOWithoutPayloadDataMessage.__init__(
         self, EIEIODataHeader(EIEIOType.KEY_32_BIT,
                               payload_prefix=payload_prefix,
                               prefix=key_prefix, count=count),
         data, offset)
Пример #3
0
 def __init__(self, key_prefix, count=0, data=None, offset=0):
     EIEIOWithPayloadDataMessage.__init__(
         self,
         EIEIODataHeader(EIEIOType.KEY_PAYLOAD_32_BIT,
                         prefix=key_prefix,
                         prefix_type=EIEIOPrefix.UPPER_HALF_WORD,
                         count=count), data, offset)
 def __init__(self, key_prefix, timestamp, count=0, data=None, offset=0):
     EIEIOWithoutPayloadDataMessage.__init__(
         self,
         EIEIODataHeader(EIEIOType.KEY_32_BIT,
                         payload_base=timestamp,
                         is_time=True,
                         prefix=key_prefix,
                         count=count), data, offset)
Пример #5
0
    def __init__(self, key_prefix, count=0, data=None, offset=0):

        EIEIOWithoutPayloadDataMessage.__init__(
            self,
            EIEIODataHeader(EIEIOType.KEY_16_BIT,
                            is_time=True,
                            prefix=key_prefix,
                            prefix_type=EIEIOPrefix.UPPER_HALF_WORD,
                            count=count), data, offset)
 def __init__(self, payload_prefix, count=0, data=None, offset=0):
     EIEIOWithPayloadDataMessage.__init__(
         self, EIEIODataHeader(EIEIOType.KEY_PAYLOAD_16_BIT,
                               payload_base=payload_prefix, count=count),
         data, offset)
 def __init__(self, count=0, data=None, offset=0):
     EIEIOWithPayloadDataMessage.__init__(
         self, EIEIODataHeader(EIEIOType.KEY_PAYLOAD_32_BIT, count=count),
         data, offset)