Method WriteInt64
WriteInt64(int, long)
Returns a HarpMessage write command with the specified address, and a single value 64-bit signed integer payload.
public static HarpMessage WriteInt64(int address, long value)
Parameters
addressintThe address of the register to which the Harp message refers to.
valuelongThe value to be stored in the payload.
Returns
- HarpMessage
A valid HarpMessage write command with the specified address and payload.
WriteInt64(int, params long[])
Returns a HarpMessage write command with the specified address, and an array payload of 64-bit signed integers.
public static HarpMessage WriteInt64(int address, params long[] values)
Parameters
addressintThe address of the register to which the Harp message refers to.
valueslong[]The values to be stored in the payload.
Returns
- HarpMessage
A valid HarpMessage write command with the specified address and payload.