Function EepromWriteBlock
Jump to navigation
Jump to search
Prototype |
|
---|---|
Description |
Write data to one EEPROM block |
Parameters |
|
Returns |
|
Video Modes |
All |
Since |
? |
Example:
//Initialize a struct and define the block id struct EepromBlockStruct ebs; //Use block 70 ebs.id = 70; //Change first data byte ebs.data[0] = 255; //Write to EEPROM EepromWriteBlock(&ebs);