OSDN Git Service

[AKC6955] Fix correct seek sequence.
[openi2cradio/OpenI2CRadio.git] / i2c_io.c
1 /*
2  * OpenI2CRADIO
3  * I2C Handler
4  * Copyright (C) 2013-06-10 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 #include <stdarg.h>
30 #include <stdio.h>
31
32 #include "i2c_io.h"
33
34 #ifdef _I2C_IO_TWO_MSSPS
35 void i2c1_init(void)
36 {
37     unsigned char b;
38 //    b = SSP1CON1;
39     b = _SSPEN | _SSPM3;
40     SSP1CON1 = b;
41     SSP1ADD = 19; // Fosc:8000[KHz] / (4 * I2C:Clock:100[KHz]) - 1
42     PIR1bits.SSPIF = 0;
43     PIE1bits.SSPIE = 0;
44     IPR1bits.SSPIP = 1;
45 }
46 void i2c2_init(void)
47 {
48     unsigned char b;
49     b =  _SSPEN | _SSPM3;
50     SSP2CON1 = b;
51     SSP2ADD = 19; // Fosc:8000[KHz] / (4 * I2C:Clock:100[KHz]) - 1
52 }
53 #else
54  #ifdef _I2C_IO_ONE_MSSP
55 void i2c1_init(void)
56 {
57  //   unsigned char b;
58 //    b = _SSPEN | _SSPM3;
59 //    SSPCON1 = b;
60 //    SSPADD = 19; // Fosc:8000[KHz] / (4 * I2C:Clock:100[KHz]) - 1
61 //    SSPSTAT = 0x80;
62     PIR1bits.SSPIF = 0;
63     PIE1bits.SSPIE = 0;
64     IPR1bits.SSPIP = 1;
65 }
66 void i2c2_init(void)
67 {
68     i2c1_init();
69 }
70
71  #else // None MSSP, Software I2C
72 void i2c1_init(void)
73 {
74 }
75 void i2c2_init(void)
76 {
77 }
78  #endif
79 #endif