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
address
intThe address of the register to which the Harp message refers to.
value
longThe 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
address
intThe address of the register to which the Harp message refers to.
values
long[]The values to be stored in the payload.
Returns
- HarpMessage
A valid HarpMessage write command with the specified address and payload.