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