From 5ecc661ec8adc61a9e4f9dec704f259450309394 Mon Sep 17 00:00:00 2001 From: Bertus Kruger Date: Wed, 13 Mar 2013 09:44:22 +1300 Subject: [PATCH] Update eeprom.h Fixed the function signature. --- eeprom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeprom.h b/eeprom.h index 1769903..311eee3 100644 --- a/eeprom.h +++ b/eeprom.h @@ -2,7 +2,7 @@ #define eeprom_h 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); int memcpy_from_eeprom_with_checksum(char *destination, unsigned int source, unsigned int size);