Created
December 1, 2019 13:54
-
-
Save giljr/a962fbc2ed8d15c9b8c11fbf6911e7f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _LIB_EEPROM_ | |
#define _LIB_EEPROM_ | |
void EEPROM_Write_byte(unsigned char address, unsigned char dta); | |
unsigned char EEPROM_Read_byte(unsigned char address); | |
void EEPROM_Write_int (unsigned char address, unsigned int dta); | |
unsigned int EEPROM_Read_int (unsigned int address); | |
void EEPROM_Write_float(unsigned char address,unsigned char *dta); | |
float EEPROM_Read_float(unsigned char address); | |
void EEPROM_Write_array (unsigned char address, unsigned char qtd_byte,unsigned char *dta); | |
void EEPROM_Read_array (unsigned char address, unsigned char qtd_byte,unsigned char *buffer); | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment