GxPsGetBoardSummary

Purpose

Returns the board summary from the EEPROM.

Syntax

GxPsGetBoardSummary (nHandle, pszBoardSum, nSumMaxLen, pnStatus)

Parameters

Name
Type
Description
nHandle
SHORT
GX7400 slot number.
pszBoardSum
LPSTR
Buffer to contain the returned board info string (null terminated string)
nSumMaxLen
SHORT
Size of the buffer contains the error string.
pnStatus
LPSHORT
Returned status: 0 on success, negative number on failure.

Comments

The board info string reads from the on-board EEPROM the following data in that order:

For example the returned string look as follow:

" GX7400, Board-Revision A, FPGA-Version:0x0A06, S/N 74000025, Calibration date: 02/12/2003, Ch1: Programmable 0-30V, Ch2: Program 0-60V"

Example

The following example returns the board summary.

 

SHORT nHandle, nStatus;

CHAR szBoardSum[256];

GxPsGetBoardSummary(nHandle, szBoardSum, sizeof (szBoardSum), &nStatus);

 

See Also

GxPsGetErrorString, GxPsInitialize