GxCntGetExtendedSerialNumber

Purpose

Returns the Extended board’s Serial Number information.

Syntax

GxCntGetExtendedSerialNumber (nHandle, pszSerialNum, nSerialNumMaxLen, pnStatus)

Parameters

Name
Type
Description
nHandle
SHORT
Handle to a counter board.
pszSerialNum
PSTR
Buffer to contain the returned Extended board’s Serial Number string.
nSerialNumMaxLen
SHORT
Size of the buffer to contain the error string.
pnStatus
PSHORT
Returned status: 0 on success, negative number on failure.

Comments

The returned Extended board’s Serial Number string provides information regarding hardware changes and modifications of the specified board. The information can be used by Marvin Test Solutions’s Customer Support department and by the user in order to determine what functionality is supported by the board.

For example, the returned string could look like the following: “GTX22100154-CC-CA-10”.

Example

The following example returns the board Extended board’s Serial Number information:

 

SHORT nHandle, nStatus;

CHAR szSummary [64];

 

GxCntGetExtendedSerialNumber (nHandle, szSummary, sizeof(szSummary), &nStatus);

 

See Also

GxCntGetBoardSummary, GxCntGetDriverSummary, GxCntInitialize, GxCntGetErrorString