Update eeprom.h
Fixed the function signature.
This commit is contained in:
parent
7bb20a7505
commit
5ecc661ec8
1 changed files with 1 additions and 1 deletions
2
eeprom.h
2
eeprom.h
|
|
@ -2,7 +2,7 @@
|
||||||
#define eeprom_h
|
#define eeprom_h
|
||||||
|
|
||||||
char eeprom_get_char(unsigned int addr);
|
char eeprom_get_char(unsigned int addr);
|
||||||
void eeprom_put_char(unsigned int addr, char new_value);
|
void eeprom_put_char( unsigned int addr, unsigned char new_value );
|
||||||
void memcpy_to_eeprom_with_checksum(unsigned int destination, char *source, unsigned int size);
|
void memcpy_to_eeprom_with_checksum(unsigned int destination, char *source, unsigned int size);
|
||||||
int memcpy_from_eeprom_with_checksum(char *destination, unsigned int source, unsigned int size);
|
int memcpy_from_eeprom_with_checksum(char *destination, unsigned int source, unsigned int size);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue