Class RepeaterStatus
- Namespace
- Harp.TimestampGeneratorGen3
- Assembly
- Harp.TimestampGeneratorGen3.dll
Represents a register that check whether device is a repeater or spreading internal timestamp.
public class RepeaterStatus
- Inheritance
-
RepeaterStatus
- Inherited Members
Fields
Address
Represents the address of the RepeaterStatus register. This field is constant.
public const int Address = 34
Field Value
RegisterLength
Represents the length of the RepeaterStatus register. This field is constant.
public const int RegisterLength = 1
Field Value
RegisterType
Represents the payload type of the RepeaterStatus register. This field is constant.
public const PayloadType RegisterType = U8
Field Value
Methods
FromPayload(MessageType, RepeaterFlags)
Returns a Harp message for the RepeaterStatus register.
public static HarpMessage FromPayload(MessageType messageType, RepeaterFlags value)
Parameters
messageType
MessageTypeThe type of the Harp message.
value
RepeaterFlagsThe value to be stored in the message payload.
Returns
- HarpMessage
A HarpMessage object for the RepeaterStatus register with the specified message type and payload.
FromPayload(double, MessageType, RepeaterFlags)
Returns a timestamped Harp message for the RepeaterStatus register.
public static HarpMessage FromPayload(double timestamp, MessageType messageType, RepeaterFlags value)
Parameters
timestamp
doubleThe timestamp of the message payload, in seconds.
messageType
MessageTypeThe type of the Harp message.
value
RepeaterFlagsThe value to be stored in the message payload.
Returns
- HarpMessage
A HarpMessage object for the RepeaterStatus register with the specified message type, timestamp, and payload.
GetPayload(HarpMessage)
Returns the payload data for RepeaterStatus register messages.
public static RepeaterFlags GetPayload(HarpMessage message)
Parameters
message
HarpMessageA HarpMessage object representing the register message.
Returns
- RepeaterFlags
A value representing the message payload.
GetTimestampedPayload(HarpMessage)
Returns the timestamped payload data for RepeaterStatus register messages.
public static Timestamped<RepeaterFlags> GetTimestampedPayload(HarpMessage message)
Parameters
message
HarpMessageA HarpMessage object representing the register message.
Returns
- Timestamped<RepeaterFlags>
A value representing the timestamped message payload.