-
Notifications
You must be signed in to change notification settings - Fork 44
/
i2c_driver.c
152 lines (135 loc) · 4.64 KB
/
i2c_driver.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
* Copyright (c) 2012, Regents of the University of California
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the University of California, Berkeley nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*
* I2C driver
*
* by Andrew Pullin
*
* v.0.1
*
* Revisions:
* Andrew Pullin 2012-5-28 Centralized I2C machinery.
*
* Notes:
* - This file is derived from the I2C machinery previously in gyro/xl.
* - TODO (apullin): Module configuration might get centralized.
*/
#include "i2c_driver.h"
#include "i2c.h"
#include "generic_typedefs.h"
#include "utils.h"
#include <stdio.h>
////////////// Private declarations ////////////////
//void i2cConfig(void);
/////////////// Public functions //////////////////
//This is the PUBLIC setup function;
//void i2cSetup(void){
// i2cConfig();
// //Do any other setup....
//}
void i2cStartTx(unsigned char channel){
if (channel == 1) { StartI2C1(); while(I2C1CONbits.SEN); }
else { StartI2C2(); while(I2C2CONbits.SEN); }
}
void i2cEndTx(unsigned char channel){
if (channel == 1) { StopI2C1(); while(I2C1CONbits.PEN); }
else { StopI2C2(); while(I2C2CONbits.PEN); }
}
void i2cSendNACK(unsigned char channel){
if (channel == 1) { NotAckI2C1(); while(I2C1CONbits.ACKEN); }
else { NotAckI2C2(); while(I2C2CONbits.ACKEN); }
}
unsigned char i2cReceiveByte(unsigned char channel) {
if (channel == 1) { return MasterReadI2C1(); }
else { return MasterReadI2C2(); }
}
void i2cSendByte(unsigned char channel, unsigned char byte) {
if (channel == 1) {
MasterWriteI2C1(byte);
while(I2C1STATbits.TRSTAT);
while(I2C1STATbits.ACKSTAT);
} else {
MasterWriteI2C2(byte);
while(I2C2STATbits.TRSTAT);
while(I2C2STATbits.ACKSTAT);
}
}
unsigned int i2cReadString(unsigned char channel, unsigned length,
unsigned char * data, unsigned int data_wait) {
if (channel == 1) { return MastergetsI2C1(length, data, data_wait); }
else { return MastergetsI2C2(length, data, data_wait); }
}
/////////////// Private functions //////////////////
//void i2cConfig(void) {
// //Configuration is actually done by each module independently.
// //This may change in the future.
//}
unsigned int i2cError(unsigned char channel) {
unsigned int err = 0;
if (channel == 1) {
if (I2C1STATbits.BCL) {
//Bus collision
err = 1;
}
if (I2C1STATbits.ACKSTAT) {
//Bus collisionNACK reception
err = 2;
}
if (I2C1STATbits.IWCOL) {
//Write collision
err = 3;
}
if (I2C1STATbits.I2COV) {
//Recieve overflow
err = 4;
}
} else {
if (I2C2STATbits.BCL) {
//Bus collision
err = 11;
}
if (I2C2STATbits.ACKSTAT) {
//Bus collisionNACK reception
err = 12;
}
if (I2C2STATbits.IWCOL) {
//Write collision
err = 13;
}
if (I2C2STATbits.I2COV) {
//Recieve overflow
err = 14;
}
}
if(err){
Nop(); //Put breakpoint here, to catch debugger
Nop();
}
return err;
}