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