Instruction manual

{
nError = el_GetErrorCode();
return FALSE;
}
nRc = el_Acquire( nBoardID, EL_SNAP );
if ( 0 != nRc ) {
nError = el_GetErrorCode();
return FALSE;
}
else {
// Wait for Acquisition end
nRc = el_WaitAcqEnd( nBoardID );
if ( 1 != nRc ) {
nError = el_GetErrorCode();
return FALSE;
}
}
//
// Get settings
//
nSizeX = el_GetSetting(nBoardID, EL_ACQSIZEX, 0);
nSizeY = el_GetSetting(nBoardID, EL_ACQSIZEY, 0);
5.2.25. el_OpenHWEx
long
el_OpenHWEx ( long BoardSelect, long Mode, char *pFirmWare, long SubId, long
Reserved );
Extended version of el_OpenHW, which allows the selection of a special firmware version (not
implemented yet). If a board with virtual grabber s is used these virtual grabber s can be opened using the
SubId parameter.
For the basic functionality please refer to el_OpenHW
PARAMETERS:
BoardSelect: board number
Mode: force basic setup yes/no
pFirmWare: not used yet, sould allow to load a special firmware version
SubId: only used on grabber with virtual grabber s to open them.
Reserved: reseved for further use. Set to 0.
RETURN VALUE:
Board ID of board initialized successfully
-1 if ERROR. See el_GetErrorCode for details.
SEE ALSO: el_GetBoardIdentifiers
EXAMPLE:
Chapter 5. Programmers
Reference
72