-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDrv_i2c_soft.c
286 lines (264 loc) · 6.03 KB
/
Drv_i2c_soft.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
/******************** (C) COPYRIGHT 2017 ANO Tech ********************************
* 作者 :匿名科创
* 官网 :www.anotc.com
* 淘宝 :anotc.taobao.com
* 技术Q群 :190169595
* 描述 :软件模拟i2c通信
**********************************************************************************/
#include "Drv_i2c_soft.h"
volatile u8 I2C_FastMode;
void I2c_Soft_delay()
{
if ( I2C_FastMode )
{
__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();
__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();
__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();
__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();
__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();__nop();
}
else
{
u8 i = 200;
while ( i-- )
__nop();
}
}
void I2c_Soft_Init()
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_StructInit(&GPIO_InitStructure);
RCC_AHB1PeriphClockCmd ( ANO_RCC_I2C , ENABLE );
GPIO_InitStructure.GPIO_Pin = I2C_Pin_SCL | I2C_Pin_SDA;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_OD;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init ( ANO_GPIO_I2C, &GPIO_InitStructure );
I2C_FastMode = 0;
}
int I2c_Soft_Start()
{
SDA_H;
SCL_H;
I2c_Soft_delay();
if ( !SDA_read )
return 0; //SDA线为低电平则总线忙,退出
SDA_L;
I2c_Soft_delay();
if ( SDA_read )
return 0; //SDA线为高电平则总线出错,退出
SDA_L;
I2c_Soft_delay();
return 1;
}
void I2c_Soft_Stop()
{
SCL_L;
I2c_Soft_delay();
SDA_L;
I2c_Soft_delay();
SCL_H;
I2c_Soft_delay();
SDA_H;
I2c_Soft_delay();
}
void I2c_Soft_Ask()
{
SCL_L;
I2c_Soft_delay();
SDA_L;
I2c_Soft_delay();
SCL_H;
I2c_Soft_delay();
SCL_L;
I2c_Soft_delay();
}
void I2c_Soft_NoAsk()
{
SCL_L;
I2c_Soft_delay();
SDA_H;
I2c_Soft_delay();
SCL_H;
I2c_Soft_delay();
SCL_L;
I2c_Soft_delay();
}
int I2c_Soft_WaitAsk ( void ) //返回为:=1无ASK,=0有ASK
{
u8 ErrTime = 0;
SCL_L;
I2c_Soft_delay();
SDA_H;
I2c_Soft_delay();
SCL_H;
I2c_Soft_delay();
while ( SDA_read )
{
ErrTime++;
if ( ErrTime > 50 )
{
I2c_Soft_Stop();
return 1;
}
}
SCL_L;
I2c_Soft_delay();
return 0;
}
void I2c_Soft_SendByte ( u8 SendByte ) //数据从高位到低位//
{
// u8 i = 8;
// while ( i-- )
// {
// SCL_L;
// I2c_Soft_delay();
// if ( SendByte & 0x80 )
// SDA_H;
// else
// SDA_L;
// SendByte <<= 1;
// I2c_Soft_delay();
// SCL_H;
// I2c_Soft_delay();
// }
// SCL_L;
u8 i = 8;
while ( i-- )
{
SCL_L;
I2c_Soft_delay();
if ( SendByte & 0x80 )
SDA_H;
else
SDA_L;
SendByte <<= 1;
//I2c_Soft_delay();
SCL_H;
I2c_Soft_delay();
}
SCL_L;
}
//读1个字节,ack=1时,发送ACK,ack=0,发送NACK
u8 I2c_Soft_ReadByte ( u8 ask ) //数据从高位到低位//
{
u8 i = 8;
u8 ReceiveByte = 0;
SDA_H;
while ( i-- )
{
ReceiveByte <<= 1;
SCL_L;
I2c_Soft_delay();
SCL_H;
I2c_Soft_delay();
if ( SDA_read )
{
ReceiveByte |= 0x01;
}
}
SCL_L;
if ( ask )
I2c_Soft_Ask();
else
I2c_Soft_NoAsk();
return ReceiveByte;
}
// IIC写一个字节数据
u8 IIC_Write_1Byte ( u8 SlaveAddress, u8 REG_Address, u8 REG_data )
{
I2c_Soft_Start();
I2c_Soft_SendByte ( SlaveAddress );
if ( I2c_Soft_WaitAsk() )
{
I2c_Soft_Stop();
return 1;
}
I2c_Soft_SendByte ( REG_Address );
I2c_Soft_WaitAsk();
I2c_Soft_SendByte ( REG_data );
I2c_Soft_WaitAsk();
I2c_Soft_Stop();
return 0;
}
// IIC读1字节数据
u8 IIC_Read_1Byte ( u8 SlaveAddress, u8 REG_Address, u8 *REG_data )
{
I2c_Soft_Start();
I2c_Soft_SendByte ( SlaveAddress );
if ( I2c_Soft_WaitAsk() )
{
I2c_Soft_Stop();
return 1;
}
I2c_Soft_SendByte ( REG_Address );
I2c_Soft_WaitAsk();
I2c_Soft_Start();
I2c_Soft_SendByte ( SlaveAddress << 1 | 0x01 );
I2c_Soft_WaitAsk();
*REG_data = I2c_Soft_ReadByte ( 0 );
I2c_Soft_Stop();
return 0;
}
// IIC写n字节数据
u8 IIC_Write_nByte ( u8 SlaveAddress, u8 REG_Address, u8 len, u8 *buf )
{
I2c_Soft_Start();
I2c_Soft_SendByte ( SlaveAddress );
if ( I2c_Soft_WaitAsk() )
{
I2c_Soft_Stop();
return 1;
}
I2c_Soft_SendByte ( REG_Address );
I2c_Soft_WaitAsk();
while ( len-- )
{
I2c_Soft_SendByte ( *buf++ );
I2c_Soft_WaitAsk();
}
I2c_Soft_Stop();
return 0;
}
// IIC读n字节数据
u8 IIC_Read_nByte ( u8 SlaveAddress, u8 REG_Address, u8 len, u8 *buf )
{
I2c_Soft_Start();
I2c_Soft_SendByte ( SlaveAddress );
if ( I2c_Soft_WaitAsk() )
{
I2c_Soft_Stop();
return 1;
}
I2c_Soft_SendByte ( REG_Address );
I2c_Soft_WaitAsk();
I2c_Soft_Start();
I2c_Soft_SendByte ( SlaveAddress | 0x01 );
I2c_Soft_WaitAsk();
while ( len )
{
if ( len == 1 )
{
*buf = I2c_Soft_ReadByte ( 0 );
}
else
{
*buf = I2c_Soft_ReadByte ( 1 );
}
buf++;
len--;
}
I2c_Soft_Stop();
return 0;
}
void IIC_MultCLK(void)
{
u8 i = 200;
while(i)
{
i--;
I2c_Soft_Stop();
}
}
/******************* (C) COPYRIGHT 2014 ANO TECH *****END OF FILE************/