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)
    def __init__(self, key_prefix, timestamp, count=0, data=None, offset=0):

        EIEIOWithoutPayloadDataMessage.__init__(
            self, EIEIODataHeader(EIEIOType.KEY_16_BIT, payload_base=timestamp,
                                  is_time=True, prefix=key_prefix,
                                  count=count),
            data, offset)
 def __init__(self, key_prefix, payload_prefix, count=0, data=None,
              offset=0):
     EIEIOWithoutPayloadDataMessage.__init__(
         self, EIEIODataHeader(EIEIOType.KEY_32_BIT,
                               payload_base=payload_prefix,
                               prefix=key_prefix,
                               prefix_type=EIEIOPrefix.UPPER_HALF_WORD,
                               count=count),
         data, offset)
    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,
        )
Exemplo n.º 5
0
 def __init__(self, key_prefix, count=0, data=None, offset=0):
     EIEIOWithoutPayloadDataMessage.__init__(
         self,
         EIEIODataHeader(EIEIOType.KEY_32_BIT,
                         prefix=key_prefix,
                         count=count), data, offset)
Exemplo n.º 6
0
    def __init__(self, count=0, data=None, offset=0):

        EIEIOWithoutPayloadDataMessage.__init__(
            self, EIEIODataHeader(EIEIOType.KEY_16_BIT, count=count),
            data, offset)
    def __init__(self, count=0, data=None, offset=0):

        EIEIOWithoutPayloadDataMessage.__init__(
            self, EIEIODataHeader(EIEIOType.KEY_16_BIT, count=count),
            data, offset)