eeprom.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _EEPROM_H
00023 #define _EEPROM_H
00024
00025 #include <stddef.h>
00026
00027 #ifdef __cplusplus
00028 extern "C" {
00029 #endif
00030
00038
00048 extern void eeprom_write_byte (unsigned char *p, const unsigned char value);
00049
00059 extern void eeprom_write_short (unsigned short *p, const unsigned short value);
00060
00067 extern unsigned char eeprom_low;
00068
00069 extern unsigned char eeprom_high;
00070
00071 #ifdef __cplusplus
00072 };
00073 #endif
00074
00077 #endif
|