cbCLoad()

Loads a value into the specified counter register.

For some devices, the value is directly loaded into the count register. For other devices, the value is first loaded into the load or hold register. Once the counter is enabled, the count is loaded from the appropriate register, generally on the first valid pulse.

Function Prototype

C/C++

int cbCLoad(int BoardNum, int RegNum, unsigned LoadValue)

Visual Basic

Function cbCLoad(ByVal BoardNum&, ByVal RegNum&, ByVal LoadValue&) As Long

Arguments

BoardNum

The number associated with the board when it was installed with InstaCal or created with cbCreateDaqDevice(). BoardNum may be 0 to 99. The specified board must have a counter.

RegNum

The register to load the count to. Set it to one of the constants in the "RegNum argument values" section below.

LoadValue

The value to be loaded. Must be between 0 and 2resolution – 1 of the counter. For example, a 16-bit counter is 216 – 1, or 65,535. Refer to the Visual Basic signed integers information in the Counter Hardware topic.

Returns

RegNum argument values

LOADREG0 to LOADREG20Load registers 0 through 20. This may span several chips.
HOLDREG1 to HOLDREG20Hold registers 1 through 20. This may span several chips. (9513 only)
ALARM1CHIP1Alarm register 1 of the first counter chip. (9513 only)
ALARM2CHIP1Alarm register 2 of the first counter chip. (9513 only)
ALARM1CHIP2Alarm register 1 of the second counter chip. (9513 only)
ALARM2CHIP2Alarm register 2 of the second counter chip. (9513 only)
ALARM1CHIP3Alarm register 1 of the third counter chip. (9513 only)
ALARM2CHIP3Alarm register 2 of the third counter chip. (9513 only)
ALARM1CHIP4Alarm register 1 of the fourth counter chip. (9513 only)
ALARM2CHIP4Alarm register 2 of the fourth counter chip. (9513 only)
COUNT1 to COUNT4Used to initialize the counter. (LS7266 only)
Load this value FIRST if using the PRESETx or PRESCALERx registers.
PRESET1 to PRESET4Used to set the upper limit of the counter in some modes. (LS7266 only)
PRESCALER1 to PRESCALER4Used for clock filtering (valid values: 0 to 255). (LS7266 only)
If using the PRESETx or COUNTx registers, load this value LAST.
MINLIMITREG0 to MINLIMITREG7Min limit register. (USB-CTR Series and USB-QUAD08 only)
MAXLIMITREG0 to MAXLIMITREG7Max limit register. (USB-CTR Series and USB-QUAD08 only)
OUTPUTVAL0REG0 to OUTPUTVAL0REG7Output register 0. (USB-CTR Series only)
OUTPUTVAL1REG0 to OUTPUTVAL1REG7Output register 1. (USB-CTR Series only)

Notes