Datasheet

EEPROM_Write
276
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void EEPROM_Write(unsigned address, unsigned short dData);
Returns Nothing.
Description
Writes wrdata to specified address.
Parameters :
- address: address of the EEPROM memory location to be written.
- wrdata: data to be written.
Note: Specified memory location will be erased before writing starts.
Requires Nothing.
Example
unsigned address = 0x732;
unsigned short dData = 0x55;
...
EEPROM_Write(address, dData);