Difference between revisions of "EEPROM"
(→EEPROM_WriteByte) |
(→EEPROM_ReadByte) |
||
Line 91: | Line 91: | ||
{{#Widget:LibTable}} | {{#Widget:LibTable}} | ||
|- | |- | ||
− | |Defination || | + | |Defination || uint8_t EEPROM_ReadByte(uint16_t eeprom_Address) |
|- | |- | ||
− | | Input Arguments || | + | | Input Arguments || uint16_t-->eeprom_address from where eeprom_data is to be read. |
|- | |- | ||
− | | Return Value|| | + | | Return Value|| uint8_t-->data read from Eeprom. |
|- | |- | ||
− | | Description || | + | | Description ||This function is used to read the data from specified EEPROM_address. |
|- | |- | ||
| Usage || | | Usage || | ||
|} | |} | ||
− | |||
− | |||
− | |||
==EEPROM_ReadNBytes== | ==EEPROM_ReadNBytes== |
Revision as of 10:44, 14 December 2014
Contents
EEPROM
Defination | |
Input Arguments | |
Return Value | |
Description | |
Usage |
EEPROM_WriteByte
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
Defination | |
Input Arguments | |
Return Value | |
Description | |
Usage |
EEPROM_WriteString
Defination | |
Input Arguments | |
Return Value | |
Description | |
Usage |
EEPROM_Erase
Defination | |
Input Arguments | |
Return Value | |
Description | |
Usage |
EEPROM_ReadByte
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
Defination | |
Input Arguments | |
Return Value | |
Description | |
Usage |
EEPROM_ReadString
Defination | |
Input Arguments | |
Return Value | |
Description | |
Usage |