| Home > Function descriptions > | History back Previous chapter Next chapter Print |
WriteEEProm |
|
uEye ActiveX Manual Version 4.00
Syntax
LONG WriteEEProm (BSTR pcString)
Description
WriteEEProm() writes up to 64 bytes of user data to the custom EEPROM area. The EEPROM is a non volatile memory, holding the data content even when the power is switched off.
Parameters
pcString |
String with data. The string does not have to be terminated with a 0 character. |
Return values
IS_SUCCESS |
Function executed successfully |
IS_NO_SUCCESS |
General error message |
Example
//Write a string to the EEPROM:
char strData[] = "my data";
ret = WriteEEProm(strData);
Related functions