Returns the board summary from the EEPROM.
GxPsGetBoardSummary (nHandle, pszBoardSum, nSumMaxLen, pnStatus)
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. |
The board info string reads from the on-board EEPROM the following data in that order:
Name
Hardware Version
Firmware version
Serial Number
Calibration date
Channels description
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"
The following example returns the board summary.
SHORT nHandle, nStatus;
CHAR szBoardSum[256];
GxPsGetBoardSummary(nHandle, szBoardSum, sizeof (szBoardSum), &nStatus);