summaryrefslogtreecommitdiff
path: root/firmware/export/eeprom_24cxx.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/eeprom_24cxx.h')
-rw-r--r--firmware/export/eeprom_24cxx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/export/eeprom_24cxx.h b/firmware/export/eeprom_24cxx.h
index d4f00818e2..bc0f444f7e 100644
--- a/firmware/export/eeprom_24cxx.h
+++ b/firmware/export/eeprom_24cxx.h
@@ -24,9 +24,9 @@
24#define EEPROM_SIZE 128 24#define EEPROM_SIZE 128
25 25
26void eeprom_24cxx_init(void); 26void eeprom_24cxx_init(void);
27bool eeprom_24cxx_read_byte(unsigned int address, char *c); 27int eeprom_24cxx_read_byte(unsigned int address, char *c);
28bool eeprom_24cxx_read(unsigned char address, void *dest, int length); 28int eeprom_24cxx_read(unsigned char address, void *dest, int length);
29bool eeprom_24cxx_write(unsigned char address, const void *src, int length); 29int eeprom_24cxx_write(unsigned char address, const void *src, int length);
30 30
31#endif 31#endif
32 32