Writes data from an array to the memory card.
C/C++
int cbMemWrite(int BoardNum, unsigned short DataBuffer[], long FirstPoint, long Count)
Visual Basic
Function cbMemWrite(ByVal BoardNum&, DataBuffer%, ByVal FirstPoint&, ByVal Count&) As Long
BoardNum
The number associated with the board when it was installed with InstaCal or created with cbCreateDaqDevice(). BoardNum may be 0 to 99.
DataBuffer
Pointer to the data array.
FirstPoint
Index of first point to write or FROMHERE. Use FirstPoint to specify the first point to write data to. For example, to write to location numbers 200 through 250, set FirstPoint = 200 and Count = 50.
Count
Number of data points (words) to write.
cbMemWrite(0, DataBuffer, 0, 100000)
cbMemWrite(0, DataBuffer, FROMHERE, 100000)
cbMemWrite(0, DataBuffer, FROMHERE, 100000)