-
Notifications
You must be signed in to change notification settings - Fork 1
/
i2c.c
261 lines (230 loc) · 6.15 KB
/
i2c.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#include "i2c.h"
#include <util/delay_basic.h>
#include <util/delay.h>
/* 3/2/2012 svn 499 */
static volatile uint8_t i2c_timer ;
void i2c_timerproc (void) {
uint8_t n ;
n=i2c_timer ;
if (n) {
i2c_timer = --n ;
}
}
uint8_t read_i2c_device(uint8_t address,uint8_t rbytes,uint8_t *rdata) {
TWCR = (1<<TWINT) | (1<<TWSTA) | (1<<TWEN) ; // START. Note TWIE not set so polling, not interrupts
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = START sent
;
if (i2c_timer == 0) {
return 1 ;
}
if ((TWSR & 0xF8) != TW_START) {
_delay_us(30);
return 2 ;
}
TWDR = (address | 0x01) ; // reading so add in Read bit in case it wasn't set in address
TWCR = (1<<TWINT) | (1<<TWEN) ; // Send address
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = address sent
;
if (i2c_timer == 0) {
return 3 ;
}
switch (TWSR & 0xF8) {
case TW_MR_SLA_ACK:
break;
case TW_MR_SLA_NACK:
_delay_us(30);
return 4;
break;
case TW_MR_ARB_LOST:
_delay_us(30);
return 5;
break;
default:
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTO) ; // Send stop
_delay_us(30);
return 6;
}
if (rbytes == 1) {
TWCR = (1<<TWINT) | (1<<TWEN); // get data. Ack if > 1 byte expected
} else {
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWEA);
}
while (rbytes) {
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = data sent
;
if (i2c_timer == 0) {
return 7 ;
}
switch (TWSR & 0xF8) {
case TW_MR_DATA_ACK:
*rdata++ = TWDR ; // read the data
rbytes-- ;
if (rbytes > 1) { // Ack unless last one
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWEA);
} else {
TWCR = (1<<TWINT) | (1<<TWEN);
}
break;
case TW_MR_DATA_NACK:
*rdata++ = TWDR ; // read the data
rbytes = 0 ; // force stop
break;
}
}
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTO) ; // Send stop
_delay_us(30);
return 0 ;
}
uint8_t write_i2c_device(uint8_t address,uint8_t wbytes,uint8_t *wdata) {
uint8_t i ;
TWCR = (1<<TWINT) | (1<<TWSTA) | (1<<TWEN) ; // START. Note TWIE not set to polling, not interrupts
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = START sent
;
if (i2c_timer == 0) {
return 17 ;
}
if ( (TWSR & 0xF8) != TW_START) {
_delay_us(30);
return 18 ;
}
TWDR = (address & 0xFE) ; // writing so mask off Read bit in case it was set in address
TWCR = (1<<TWINT) | (1<<TWEN) ; // Send address
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = address sent
;
if (i2c_timer == 0) {
return 19 ;
}
if( (TWSR & 0xF8) != TW_MT_SLA_ACK ) {
_delay_us(30);
return 20 ;
}
for (i=0;i<wbytes;i++) {
TWDR = wdata[i] ;
TWCR = (1<<TWINT) | (1<<TWEN) ; // Send data
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = data sent
;
if (i2c_timer == 0) {
return 23 ;
}
if ((TWSR & 0xF8) != TW_MT_DATA_ACK) {
_delay_us(30);
return 24 ;
}
}
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTO) ; // Send stop
_delay_us(30);
return 0 ;
}
uint8_t write_read_i2c_device(uint8_t address,uint8_t wbytes,uint8_t *wdata,uint8_t rbytes,uint8_t *rdata) {
uint8_t i ;
TWCR = (1<<TWINT) | (1<<TWSTA) | (1<<TWEN) ; // START. Note TWIE not set so polling, not interrupts
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = START sent
;
if (i2c_timer == 0) {
return 33 ;
}
if ( (TWSR & 0xF8) != TW_START) {
_delay_us(30);
return 34 ;
}
TWDR = (address & 0xFE) ; // writing so mask off Read bit in case it was set in address
TWCR = (1<<TWINT) | (1<<TWEN) ; // Send address
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = address sent
;
if (i2c_timer == 0) {
return 35 ;
}
if( (TWSR & 0xF8) != TW_MT_SLA_ACK ) {
_delay_us(30);
return 36 ;
}
for (i=0;i<wbytes;i++) {
TWDR = wdata[i] ;
TWCR = (1<<TWINT) | (1<<TWEN) ; // Send data
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = data sent
;
if (i2c_timer == 0) {
return 39 ;
}
if ((TWSR & 0xF8) != TW_MT_DATA_ACK) {
_delay_us(30);
return 40 ;
}
}
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTA) ; // Send repeated start
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = START sent
;
if (i2c_timer == 0) {
_delay_us(30);
return 41 ;
}
if ( (TWSR & 0xF8) != TW_REP_START) {
_delay_us(30);
return 42 ;
}
TWDR = (address | 0x01) ; // reading so add in Read bit in case it wasn't set in address
TWCR = (1<<TWINT) | (1<<TWEN) ; // Send address
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = address sent
;
if (i2c_timer == 0) {
return 43 ;
}
switch (TWSR & 0xF8) {
case TW_MR_SLA_ACK:
break;
case TW_MR_SLA_NACK:
_delay_us(30);
return 44;
break;
case TW_MR_ARB_LOST:
_delay_us(30);
return 45;
break;
default:
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTO) ; // Send stop
_delay_us(30);
return 46;
}
if (rbytes == 1) {
TWCR = (1<<TWINT) | (1<<TWEN); // get data. Ack if > 1 byte expected
} else {
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWEA);
}
while (rbytes) {
i2c_timer = 3 ;
while ( (!(TWCR & (1<<TWINT))) && i2c_timer) // wait for flag = data sent
;
if (i2c_timer == 0) {
return 47 ;
}
switch (TWSR & 0xF8) {
case TW_MR_DATA_ACK:
*rdata++ = TWDR ; // read the data
rbytes-- ;
if (rbytes > 1) { // Ack unless last one
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWEA);
} else {
TWCR = (1<<TWINT) | (1<<TWEN);
}
break;
case TW_MR_DATA_NACK:
*rdata++ = TWDR ; // read the data
rbytes = 0 ; // force stop
break;
}
}
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTO) ; // Send stop
_delay_us(30);
return 0 ;
}