Table of Contents

Method WriteInt64

Namespace
Bonsai.Harp
Assembly
Bonsai.Harp.dll

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 int

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

value long

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

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