00001 /************************************************************************************************** 00002 Title : I2C Bus Serial EEPROM Driver 00003 Programer : Yosuke FURUSAWA. 00004 Copyright : Copyright (C) 2003-2010 Yosuke FURUSAWA. 00005 License : 4-clause BSD License 00006 Since : 2003/08/13 ? 00007 00008 Filename : libeeprom.c 00009 Last up date : 2010/05/27 00010 Kanji-Code : Shift-JIS 00011 TAB Space : 4 00012 **************************************************************************************************/ 00013 00014 00015 #ifndef _LIBEEPROM_H_ 00016 #define _LIBEEPROM_H_ 00017 00018 #include "types.h" 00019 00020 00021 /*================================================================================================= 00022 プロトタイプ宣言 00023 =================================================================================================*/ 00024 extern void EEPROM_init(void); 00025 extern int EEPROM_read (unsigned int ptr); 00026 extern BOOL EEPROM_write(unsigned int ptr, unsigned char buf); 00027 00028 00029 #endif