OSDN Git Service

[SCHEMATIC] Modify SW/MW/LW Preamp, insert galbanic-isolator replace of common-mode...
[openi2cradio/OpenI2CRadio.git] / eeprom.h
1 /*
2  * OpenI2CRADIO
3  * Internal eeprom Handler
4  * Copyright (C) 2013-06-13 K.Ohta <whatisthis.sowhat ai gmail.com>
5  * License: GPL2+LE
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2,
10  *  or (at your option) any later version.
11  *  This library / program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  *  See the GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this library; see the file COPYING. If not, write to the
18  *  Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19  *  MA 02110-1301, USA.
20  *
21  *  As a special exception, if you link this(includeed from sdcc) library
22  *  with other files, some of which are compiled with SDCC,
23  *  to produce an executable, this library does not by itself cause
24  *  the resulting executable to be covered by the GNU General Public License.
25  *  This exception does not however invalidate any other reasons why
26  *  the executable file might be covered by the GNU General Public License.
27  */
28
29 #ifndef EEPROM_H
30 #define EEPROM_H
31
32 #include "menu.h"
33
34 #ifdef  __cplusplus
35 extern "C" {
36 #endif
37 /*
38  * Basic IO routine for EEPROM.
39  */
40 extern unsigned char eeprom_readbyte(unsigned int offset);
41 extern unsigned char eeprom_writebyte(unsigned int offset, unsigned char data);
42 /*
43  * Calc checksum.
44  */
45 extern unsigned int calcsum_byte(unsigned int seed, unsigned char byte);
46 extern unsigned char checksum_eeprom(unsigned int seed, unsigned int offset, unsigned int bytes);
47 /*
48  * Format EEPROM.
49  */
50 extern unsigned int format_eeprom(unsigned int start, unsigned int bytes);
51 /*
52  * Read/Write with checksum.
53  */
54 extern unsigned int readword_eeprom(unsigned int *p, unsigned int *sum);
55 extern unsigned char readbyte_eeprom(unsigned int *p, unsigned int *sum);
56 extern unsigned int writeword_eeprom(unsigned int *p, unsigned int *sum, unsigned int word);
57 extern unsigned int writebyte_eeprom(unsigned int *p, unsigned int *sum, unsigned char b);
58
59
60 //extern unsigned int calcsum_frequencies(__freqset_t *p, unsigned int start);
61
62
63 #ifdef  __cplusplus
64 }
65 #endif
66
67 #endif  /* EEPROM_H */
68