Table of Contents

Method WriteUInt64

Namespace
Bonsai.Harp
Assembly
Bonsai.Harp.dll

WriteUInt64(int, ulong)

Returns a HarpMessage write command with the specified address, and a single value 64-bit unsigned integer payload.

public static HarpMessage WriteUInt64(int address, ulong value)

Parameters

address int

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

value ulong

The value to be stored in the payload.

Returns

HarpMessage

A valid HarpMessage write command with the specified address and payload.

WriteUInt64(int, params ulong[])

Returns a HarpMessage write command with the specified address, and an array payload of 64-bit unsigned integers.

public static HarpMessage WriteUInt64(int address, params ulong[] values)

Parameters

address int

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

values ulong[]

The values to be stored in the payload.

Returns

HarpMessage

A valid HarpMessage write command with the specified address and payload.