-
Notifications
You must be signed in to change notification settings - Fork 0
/
I2C.c
217 lines (187 loc) · 3.97 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
#include "I2C.h"
void inicjalizacja_I2C_GPIO()
{
GPIO_PinRemapConfig(AFIO_MAPR_I2C1_REMAP, ENABLE ); //remap na wlasciwe piny
//konfiguracja portów - SPRAWDZONE jest OK
GPIO_InitTypeDef *i2c_gpio = malloc (sizeof (GPIO_InitTypeDef));
i2c_gpio->GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11; //I2C1 i I2C2
i2c_gpio->GPIO_Speed = GPIO_Speed_2MHz;
i2c_gpio->GPIO_Mode = GPIO_Mode_AF_OD;
GPIO_Init(GPIOB, i2c_gpio);
free(i2c_gpio);
}
void inicjalizacja_I2C()
{
inicjalizacja_I2C_GPIO();
//SPRAWDZONE jest OK
I2C_InitTypeDef *i2c = malloc (sizeof (I2C_InitTypeDef));
/* I2C configuration */
i2c->I2C_Mode = I2C_Mode_I2C;
i2c->I2C_DutyCycle = I2C_DutyCycle_2;
i2c->I2C_OwnAddress1 = 0x55;
i2c->I2C_Ack = I2C_Ack_Enable;
i2c->I2C_AcknowledgedAddress = I2C_AcknowledgedAddress_7bit;
i2c->I2C_ClockSpeed = 100000;
/* I2C Peripheral Enable */
I2C_Cmd(I2C2, ENABLE);
/* Apply I2C configuration after enabling it */
I2C_Init(I2C2, i2c);
i2c->I2C_OwnAddress1 = 0x65;
I2C_Cmd(I2C1, ENABLE);
I2C_Init(I2C1, i2c);
//free(i2c);
}
void odczyt_I2C(I2C_TypeDef *I2Cx, uint8_t adres, uint8_t rejestr, uint8_t dlugosc, uint8_t *bufor)
{
while(I2Cx->SR2 & I2C_SR2_BUSY) //sprawdzanie czy I2C wolny
{
if(sprawdz_blad_I2C(I2Cx))
{
//i2c_config();
return;
}
}
I2Cx->CR1 |= I2C_CR1_START; //Wyslanie START
while( !( I2Cx->SR1 & I2C_SR1_SB )) //sprawdzanie czy się wyslalo
{
if(sprawdz_blad_I2C(I2Cx))
{
//i2c_config();
return;
}
}
I2Cx->DR = adres; //przed zapisaniem SR2, trzeba do DR zapisać adres
while( !( I2Cx->SR1 & I2C_SR1_ADDR ))
{
if(sprawdz_blad_I2C(I2Cx))
{
//i2c_config();
return;
}
}
I2Cx->SR2; //konieczne wg datasheet, czyszczenie rejestru SR1
while( !( I2Cx->SR1 & I2C_SR1_TXE ))
{
if(sprawdz_blad_I2C(I2Cx))
{
//i2c_config();
return;
}
}
/*
wysłanie nr rejestru do czytania, najbardziej
znaczšcy bit musi być równy 1 */
I2Cx->DR = rejestr;
while( !( I2Cx->SR1 & I2C_SR1_BTF ))
{
if(sprawdz_blad_I2C(I2Cx))
{
//i2c_config();
return;
}
}
I2Cx->CR1 |= I2C_CR1_START; //Wyslanie START
while( !( I2Cx->SR1 & I2C_SR1_SB ))
{
if(sprawdz_blad_I2C(I2Cx))
{
//i2c_config();
return;
}
}
I2Cx->DR = adres | 0x01; //Wyslanie adresu czytania
while( !( I2Cx->SR1 & I2C_SR1_ADDR ))
{
if(sprawdz_blad_I2C(I2Cx))
{
//i2c_config();
return;
}
}
I2Cx->SR2; //konieczne wg datasheet, czyszczenie rejestru SR1
I2Cx->CR1 |= I2C_CR1_ACK; //wlaczenie potwierdzenia master
for(; dlugosc > 0; dlugosc-- )
{
if( dlugosc == 1 )
I2Cx->CR1 &= ~I2C_CR1_ACK; //przy ostatnim wylaczenie potwierdzenia
while( !( I2Cx->SR1 & I2C_SR1_RXNE ))
{
if(sprawdz_blad_I2C(I2Cx))
{
//i2c_config();
return;
}
}
*(bufor++) = I2Cx->DR;
}
I2Cx->CR1 |= I2C_CR1_STOP;
}
int sprawdz_blad_I2C(I2C_TypeDef *I2Cx)
{
if((I2Cx->SR1 & I2C_SR1_TIMEOUT) | (I2Cx->SR1 & I2C_SR1_PECERR) | (I2Cx->SR1 & I2C_SR1_AF) | (I2Cx->SR1 & I2C_SR1_ARLO) |
(I2Cx->SR1 & I2C_SR1_BERR))
{
//sensors_error_flag = 1;
return 1;
}
return 0;
}
void wyslij_I2C(I2C_TypeDef *I2Cx, uint8_t adres, uint8_t rejestr, uint8_t dane)
{
while(I2Cx->SR2 & I2C_SR2_BUSY)
{
if(sprawdz_blad_I2C(I2Cx))
{
inicjalizacja_I2C();
return;
}
}
I2Cx->CR1 |= I2C_CR1_START;
while(!(I2Cx->SR1 & I2C_SR1_SB))
{
if(sprawdz_blad_I2C(I2Cx))
{
inicjalizacja_I2C();
return;
}
}
I2Cx->SR1;
I2Cx->DR = adres;
while (!(I2Cx->SR1 & I2C_SR1_ADDR))
{
if(sprawdz_blad_I2C(I2Cx))
{
inicjalizacja_I2C();
return;
}
}
I2Cx->SR1;
I2Cx->SR2;
while (!(I2Cx->SR1 & I2C_SR1_TXE))
{
if(sprawdz_blad_I2C(I2Cx))
{
inicjalizacja_I2C();
return;
}
}
I2Cx->DR = rejestr;
while (!(I2Cx->SR1 & I2C_SR1_TXE))
{
if(sprawdz_blad_I2C(I2Cx))
{
inicjalizacja_I2C();
return;
}
}
I2Cx->DR = dane;
while (!(I2Cx->SR1 & I2C_SR1_TXE) || !(I2Cx->SR1 & I2C_SR1_BTF))
{
if(sprawdz_blad_I2C(I2Cx))
{
inicjalizacja_I2C();
return;
}
}
I2Cx->CR1 |= I2C_CR1_STOP;
}