EEPROM

{{#Widget:LibTable}}
Defination
Input Arguments
Return Value
Description
Usage



EEPROM_WriteByte

{{#Widget:LibTable}}
Defination void EEPROM_WriteByte(uint16_t eeprom_Address, uint8_t eeprom_Data)
Input Arguments uint16_t: eeprom_address at which eeprom_data is to be written. uint8_t-->byte of data to be to be written in eeprom.
Return Value none
Description This function is used to write the data at specified EEPROM_address..
Usage

EEPROM_WriteNBytes

{{#Widget:LibTable}}
Defination void EEPROM_WriteNBytes(uint16_t EepromAddr, uint8_t *RamAddr, uint16_t NoOfBytes)
Input Arguments uint16_t,-->eeprom_address from where the N-bytes are to be written. uint8_t*-->Pointer to the N-bytes of data to be written. uint16_t --> Number of bytes to be written.
Return Value none
Description This function is used to write N-bytes of data at specified EEPROM_address.
Usage

EEPROM_WriteString

{{#Widget:LibTable}}
Defination
Input Arguments
Return Value
Description
Usage



EEPROM_Erase

{{#Widget:LibTable}}
Defination
Input Arguments
Return Value
Description
Usage



EEPROM_ReadByte

{{#Widget:LibTable}}
Defination uint8_t EEPROM_ReadByte(uint16_t eeprom_Address)
Input Arguments uint16_t-->eeprom_address from where eeprom_data is to be read.
Return Value uint8_t-->data read from Eeprom.
Description This function is used to read the data from specified EEPROM_address.
Usage

EEPROM_ReadNBytes

{{#Widget:LibTable}}
Defination
Input Arguments
Return Value
Description
Usage



EEPROM_ReadString

{{#Widget:LibTable}}
Defination
Input Arguments
Return Value
Description
Usage