OSDN Git Service

[SCHEMATIC] Modify SW/MW/LW Preamp, insert galbanic-isolator replace of common-mode...
[openi2cradio/OpenI2CRadio.git] / iodef_i2c.h
1 /*
2  * OpenI2CRADIO
3  * I/O Port defines / I2C.
4  * Copyright (C) 2013-08-22 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 IODEF_I2C_H
30 #define IODEF_I2C_H
31
32 #ifdef  __cplusplus
33 extern "C" {
34 #endif
35
36 /*
37  * Machine depended flags
38  */
39 #if defined(__SDCC)
40 #if defined(pic18f23k22) || defined(pic18f24k22) || defined(pic18f25k22) || defined(pic18f26k22)
41 #define _I2C_IO_TWO_MSSPS
42 #define _PIO_HAS_THREE
43 #endif
44
45 #if defined(pic18f23k20) || defined(pic18f24k20) || defined(pic18f25k20) || defined(pic18f26k20)
46 #define _I2C_IO_ONE_MSSP
47 #define _PIO_HAS_THREE
48 #endif
49
50 #if defined(pic18f43k20) || defined(pic18f44k20) || defined(pic18f45k20) || defined(pic18f46k20)
51 #define _I2C_IO_ONE_MSSP
52 #define _PIO_HAS_FIVE
53 #endif
54 #else // __XC
55
56 #if defined(_18F23K22) || defined(_18F24K22) || defined(_18F25K22) || defined(_18F26K22)
57 #define _I2C_IO_TWO_MSSPS
58 #define _PIO_HAS_THREE
59 #endif
60
61 #if defined(_18F23K20) || defined(_18F24K20) || defined(_18F25K20) || defined(_18F26K20)
62 #define _I2C_IO_ONE_MSSP
63 #define _PIO_HAS_THREE
64 #endif
65
66 #if defined(_18F43K20) || defined(_18F44K20) || defined(_18F45K20) || defined(_18F46K20)
67 #define _I2C_IO_ONE_MSSP
68 #define _PIO_HAS_FIVE
69 #endif
70 #endif
71
72
73
74 #ifdef  __cplusplus
75 }
76 #endif
77
78 #endif  /* IODEF_I2C_H */
79