Table of Contents

Method WriteUInt32

Namespace
Bonsai.Harp
Assembly
Bonsai.Harp.dll

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 int

The address of the register to which the Harp message refers to.

value uint

The 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 int

The 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.