Home > C: Programming > Function Descriptions > | History back Previous chapter Next chapter Print |
is_SetStarterFirmware |
uEye Camera Manual Version 3.80
is_SetStarterFirmware
GigE |
GigE |
Syntax
INT is_SetStarterFirmware (HIDS hDev,
const CHAR* pcFilepath,
UINT uFilepathLen)
Description
Using is_SetStarterFirmware(), you can update the starter firmware of a connected camera. This is also possible from within the uEye Camera Manager.
|
|
Input Parameters
hDev |
DevID | IS_USE_DEVICE_ID, |
pcFilepath |
Pointer to a null-terminated ASCII string |
uFilepathLen |
Length of the file path (in bytes). |
|
Return Values
IS_SUCCESS |
Function executed successfully |
IS_INVALID_PARAMETER |
The pcFilepath or uFilepathLen parameter is invalid. |
IS_BAD_STRUCTURE_SIZE |
The structure size you specified is invalid. |
IS_NOT_SUPPORTED |
For hDev, no device ID was specified or the ID is no device ID for an Ethernet camera. |
IS_CANT_OPEN_DEVICE |
Driver could not be found. |
IS_IO_REQUEST_FAILED |
Driver communication failed. |
Related Functions
Code Sample
// Prepare the data parameter.
const CHAR kFilepath[]= “c:\\ids\\firmware.fw”;
// Prepare the handle parameter. Mark the given device id with IS_USE_DEVICE_ID.
HIDS hDev = (HIDS)( dwDeviceID | IS_USE_DEVICE_ID);
INT nRet = is_SetStarterFirmware( hDev, kFilepath, sizeof(kFilepath));