© 2016 Thorlabs Scientific Imaging
4 Programming (SDK)
279
if (nRet != IS_SUCCESS)
{
//Check if GigE uEye SE needs a new starter firmware
if (nRet == IS_STARTER_FW_UPLOAD_NEEDED)
{
//Calculate time needed for updating the starter firmware
INT nTime;
is_GetDuration (hCam, IS_SE_STARTER_FW_UPLOAD, &nTime);
/*
e.g. have progress bar displayed in separate thread
*/
//Upload new starter firmware during initialization
hCam = hCam | IS_ALLOW_STARTER_FW_UPLOAD;
nRet = is_InitCamera (&hCam, NULL);
/*
end progress bar
*/
}
}
Sample programs
uc480MultipleCameraScan (C++)
uc480Console (C++)
uc480C# Demo (C#)