-
Notifications
You must be signed in to change notification settings - Fork 0
/
i2c_slave.c
421 lines (358 loc) · 10 KB
/
i2c_slave.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
/**
I2C Generated Driver File
@Company
Microchip Technology Inc.
@File Name
i2c_slave.c
@Summary
This is the generated driver implementation file for the I2C driver using PIC10 / PIC12 / PIC16 / PIC18 MCUs
@Description
This header file provides implementations for driver APIs for I2C.
Generation Information :
Product Revision : PIC10 / PIC12 / PIC16 / PIC18 MCUs - 1.81.8
Device : PIC18F46K20
Driver Version : 2.0.1
The generated drivers are tested against the following:
Compiler : XC8 2.36 and above or later
MPLAB : MPLAB X 6.00
*/
/*
(c) 2018 Microchip Technology Inc. and its subsidiaries.
Subject to your compliance with these terms, you may use Microchip software and any
derivatives exclusively with Microchip products. It is your responsibility to comply with third party
license terms applicable to your use of third party software (including open source software) that
may accompany Microchip software.
THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY
IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS
FOR A PARTICULAR PURPOSE.
IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP
HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO
THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL
CLAIMS IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT
OF FEES, IF ANY, THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS
SOFTWARE.
*/
#include "i2c_slave.h"
#include <xc.h>
#define I2C_SLAVE_ADDRESS 112
#define I2C_SLAVE_MASK 127
typedef enum
{
I2C_IDLE,
I2C_ADDR_TX,
I2C_ADDR_RX,
I2C_DATA_TX,
I2C_DATA_RX
} i2c_slave_state_t;
/**
Section: Global Variables
*/
volatile uint8_t i2cWrData;
volatile uint8_t i2cRdData;
volatile uint8_t i2cSlaveAddr;
static volatile i2c_slave_state_t i2cSlaveState = I2C_IDLE;
/**
Section: Functions declaration
*/
static void I2C_Isr(void);
static void I2C_SlaveDefRdInterruptHandler(void);
static void I2C_SlaveDefWrInterruptHandler(void);
static void I2C_SlaveDefAddrInterruptHandler(void);
static void I2C_SlaveDefWrColInterruptHandler(void);
static void I2C_SlaveDefBusColInterruptHandler(void);
static void I2C_SlaveRdCallBack(void);
static void I2C_SlaveWrCallBack(void);
static void I2C_SlaveAddrCallBack(void);
static void I2C_SlaveWrColCallBack(void);
static void I2C_SlaveBusColCallBack(void);
static inline bool I2C_SlaveOpen();
static inline void I2C_SlaveClose();
static inline void I2C_SlaveSetSlaveAddr(uint8_t slaveAddr);
static inline void I2C_SlaveSetSlaveMask(uint8_t maskAddr);
static inline void I2C_SlaveEnableIrq(void);
static inline bool I2C_SlaveIsAddr(void);
static inline bool I2C_SlaveIsRead(void);
static inline void I2C_SlaveClearBuff(void);
static inline void I2C_SlaveClearIrq(void);
static inline void I2C_SlaveReleaseClock(void);
static inline bool I2C_SlaveIsWriteCollision(void);
static inline bool I2C_SlaveIsTxBufEmpty(void);
static inline bool I2C_SlaveIsData(void);
static inline void I2C_SlaveRestart(void);
static inline bool I2C_SlaveIsRxBufFull(void);
static inline void I2C_SlaveSendTxData(uint8_t data);
static inline uint8_t I2C_SlaveGetRxData(void);
static inline uint8_t I2C_SlaveGetAddr(void);
static inline void I2C_SlaveSendAck(void);
static inline void I2C_SlaveSendNack(void);
static inline bool I2C_SlaveIsOverFlow(void);
void I2C_Initialize()
{
SSPSTAT = 0x80;
SSPCON1 |= 0x06;
SSPCON2 = 0x00;
SSPCON1bits.SSPEN = 0;
}
void I2C_Open()
{
I2C_SlaveOpen();
I2C_SlaveSetSlaveAddr(I2C_SLAVE_ADDRESS);
I2C_SlaveSetSlaveMask(I2C_SLAVE_MASK);
I2C_SlaveSetIsrHandler(I2C_Isr);
I2C_SlaveSetBusColIntHandler(I2C_SlaveDefBusColInterruptHandler);
I2C_SlaveSetWriteIntHandler(I2C_SlaveDefWrInterruptHandler);
I2C_SlaveSetReadIntHandler(I2C_SlaveDefRdInterruptHandler);
I2C_SlaveSetAddrIntHandler(I2C_SlaveDefAddrInterruptHandler);
I2C_SlaveSetWrColIntHandler(I2C_SlaveDefWrColInterruptHandler);
I2C_SlaveEnableIrq();
}
void I2C_Close()
{
I2C_SlaveClose();
}
uint8_t I2C_Read()
{
return I2C_SlaveGetRxData();
}
void I2C_Write(uint8_t data)
{
I2C_SlaveSendTxData(data);
}
bool I2C_IsRead()
{
return I2C_SlaveIsRead();
}
void I2C_Enable()
{
I2C_Initialize();
}
void I2C_SendAck()
{
I2C_SlaveSendAck();
}
void I2C_SendNack()
{
I2C_SlaveSendNack();
}
static void I2C_Isr()
{
I2C_SlaveClearIrq();
if(I2C_SlaveIsAddr())
{
if(I2C_SlaveIsRead())
{
i2cSlaveState = I2C_ADDR_TX;
}
else
{
i2cSlaveState = I2C_ADDR_RX;
}
}
else
{
if(I2C_SlaveIsRead())
{
i2cSlaveState = I2C_DATA_TX;
}
else
{
i2cSlaveState = I2C_DATA_RX;
}
}
switch(i2cSlaveState)
{
case I2C_ADDR_TX:
I2C_SlaveAddrCallBack();
if(I2C_SlaveIsTxBufEmpty())
{
I2C_SlaveWrCallBack();
}
break;
case I2C_ADDR_RX:
I2C_SlaveAddrCallBack();
break;
case I2C_DATA_TX:
if(I2C_SlaveIsTxBufEmpty())
{
I2C_SlaveWrCallBack();
}
break;
case I2C_DATA_RX:
if(I2C_SlaveIsRxBufFull())
{
I2C_SlaveRdCallBack();
}
break;
default:
break;
}
I2C_SlaveReleaseClock();
}
// Common Event Interrupt Handlers
void I2C_SlaveSetIsrHandler(i2cInterruptHandler handler)
{
MSSP_InterruptHandler = handler;
}
// Read Event Interrupt Handlers
void I2C_SlaveSetReadIntHandler(i2cInterruptHandler handler) {
I2C_SlaveRdInterruptHandler = handler;
}
static void I2C_SlaveRdCallBack() {
// Add your custom callback code here
if (I2C_SlaveRdInterruptHandler)
{
I2C_SlaveRdInterruptHandler();
}
}
static void I2C_SlaveDefRdInterruptHandler() {
i2cRdData = I2C_SlaveGetRxData();
}
// Write Event Interrupt Handlers
void I2C_SlaveSetWriteIntHandler(i2cInterruptHandler handler) {
I2C_SlaveWrInterruptHandler = handler;
}
static void I2C_SlaveWrCallBack() {
// Add your custom callback code here
if (I2C_SlaveWrInterruptHandler)
{
I2C_SlaveWrInterruptHandler();
}
}
static void I2C_SlaveDefWrInterruptHandler() {
I2C_SlaveSendTxData(i2cWrData);
}
// ADDRESS Event Interrupt Handlers
void I2C_SlaveSetAddrIntHandler(i2cInterruptHandler handler){
I2C_SlaveAddrInterruptHandler = handler;
}
static void I2C_SlaveAddrCallBack() {
// Add your custom callback code here
if (I2C_SlaveAddrInterruptHandler) {
I2C_SlaveAddrInterruptHandler();
}
}
static void I2C_SlaveDefAddrInterruptHandler() {
i2cSlaveAddr = I2C_SlaveGetRxData();
}
// Write Collision Event Interrupt Handlers
void I2C_SlaveSetWrColIntHandler(i2cInterruptHandler handler){
I2C_SlaveWrColInterruptHandler = handler;
}
static void I2C_SlaveWrColCallBack() {
// Add your custom callback code here
if ( I2C_SlaveWrColInterruptHandler)
{
I2C_SlaveWrColInterruptHandler();
}
}
static void I2C_SlaveDefWrColInterruptHandler() {
}
// Bus Collision Event Interrupt Handlers
void I2C_SlaveSetBusColIntHandler(i2cInterruptHandler handler){
I2C_SlaveBusColInterruptHandler = handler;
}
static void I2C_SlaveBusColCallBack() {
// Add your custom callback code here
if ( I2C_SlaveBusColInterruptHandler)
{
I2C_SlaveBusColInterruptHandler();
}
}
static void I2C_SlaveDefBusColInterruptHandler() {
}
static inline bool I2C_SlaveOpen()
{
if(!SSPCON1bits.SSPEN)
{
SSPSTAT = 0x80;
SSPCON1 |= 0x06;
SSPCON2 = 0x00;
SSPCON1bits.SSPEN = 1;
return true;
}
return false;
}
static inline void I2C_SlaveClose()
{
SSPSTAT = 0x80;
SSPCON1 |= 0x06;
SSPCON2 = 0x00;
SSPCON1bits.SSPEN = 0;
}
static inline void I2C_SlaveSetSlaveAddr(uint8_t slaveAddr)
{
SSPADD = (uint8_t) (slaveAddr);
}
static inline void I2C_SlaveSetSlaveMask(uint8_t maskAddr)
{
SSPMSK = (uint8_t) (maskAddr);
}
static inline void I2C_SlaveEnableIrq()
{
PIE1bits.SSPIE = 1;
}
static inline bool I2C_SlaveIsAddr()
{
return !(SSPSTATbits.D_nA);
}
static inline bool I2C_SlaveIsRead()
{
return (SSPSTATbits.R_nW);
}
static inline void I2C_SlaveClearIrq()
{
PIR1bits.SSPIF = 0;
}
static inline void I2C_SlaveReleaseClock()
{
SSPCON1bits.CKP = 1;
}
static inline bool I2C_SlaveIsWriteCollision()
{
return SSPCON1bits.WCOL;
}
static inline bool I2C_SlaveIsData()
{
return SSPSTATbits.D_nA;
}
static inline void I2C_SlaveRestart(void)
{
SSPCON2bits.RSEN = 1;
}
static inline bool I2C_SlaveIsTxBufEmpty()
{
return !SSPSTATbits.BF;
}
static inline bool I2C_SlaveIsRxBufFull()
{
return SSPSTATbits.BF;
}
static inline void I2C_SlaveSendTxData(uint8_t data)
{
SSPBUF = data;
}
static inline uint8_t I2C_SlaveGetRxData()
{
return SSPBUF;
}
static inline uint8_t I2C_SlaveGetAddr()
{
return SSPADD;
}
static inline void I2C_SlaveSendAck()
{
SSPCON2bits.ACKDT = 0;
SSPCON2bits.ACKEN = 1;
}
static inline void I2C_SlaveSendNack()
{
SSPCON2bits.ACKDT = 1;
SSPCON2bits.ACKEN = 1;
}
static inline bool I2C_SlaveIsOverFlow()
{
return SSPCON1bits.SSPOV;
}