-
Notifications
You must be signed in to change notification settings - Fork 0
/
gyro_ADXRS453.c
244 lines (204 loc) · 7.35 KB
/
gyro_ADXRS453.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
#include "gyro_ADXRS453.h"
#include "spi_nb.h"
#include <stdio.h>
#ifdef GYRO_ADXRS453
#define NB_MAX_CHAR_GYRO 4
struct {
unsigned short SQ:3;
unsigned short ST:2;
unsigned short P0:1;
unsigned short P1:1;
unsigned short PLL:1;
unsigned short Q:1;
unsigned short NVM:1;
unsigned short POR:1;
unsigned short PWR:1;
unsigned short CST:1;
unsigned short CHK:1;
int16_t rateData;
} Gyro_SensorData;
void Gyro_traitementDonnees(unsigned char * tamponRecu);
unsigned char pariteOctet(unsigned char octet);
int gyro_spi_wr_32bits(uint16_t *transmit_buffer, uint8_t *recieve_buffer){
int nb_recu;
cs_select();
if(spi_nb_write_data(spi0, (uint16_t*) transmit_buffer, 4) == SPI_ERR_TRANSMIT_FIFO_FULL){
puts("gyro_spi_wr_32bits: SPI_ERR_TRANSMIT_FIFO_FULL");
}else{
while(spi_nb_busy(spi0));
nb_recu = spi_nb_read_data_8bits(spi0, recieve_buffer);
}
if(nb_recu != 4){
puts("gyro_spi_wr_32bits: nb_recu incohérent");
}
cs_deselect();
}
void affiche_tampon_32bits(uint8_t *tampon){
uint32_t valeur;
valeur = (tampon[0] << 24) + (tampon[1] << 16) + (tampon[2]<<8) + tampon[3];
printf("Tampon: %#010x\n", valeur);
}
int gyro_get_sensor_data(uint16_t tampon_envoi[], uint8_t tampon_reception[]){
tampon_envoi[0] = 0x30;
tampon_envoi[1] = 0x00;
tampon_envoi[2] = 0x00;
tampon_envoi[3] = 0x01;
gyro_spi_wr_32bits(tampon_envoi, tampon_reception);
Gyro_traitementDonnees(tampon_reception);
if(Gyro_SensorData.SQ != 0x4){
printf("Gyro Failed - SQ bits (%#3x)!= 0x4\n", Gyro_SensorData.SQ);
affiche_tampon_32bits(tampon_reception);
return 1;
}
if(Gyro_SensorData.ST != 0x1){
printf("Gyro Failed - Status (%#3x)!= 0x1\n", Gyro_SensorData.ST);
affiche_tampon_32bits(tampon_reception);
return 1;
}
return 0;
}
int gyro_init_check(){
// Renvoi 0 si l'initialisation s'est bien passée
// Renvoi 1 si le gyroscope n'a pas répondu
uint16_t tampon_envoi[5]={0, 0, 0, 0, 0};
uint8_t tampon_reception[5]="\0\0\0\0\0";
// On suit les instructions de la page 20 de la fiche technique
sleep_ms(100); // init du gyro - On ignore la réponse
printf("T=100ms\n");
tampon_envoi[0] = 0x30;
tampon_envoi[1] = 0x00;
tampon_envoi[2] = 0x00;
tampon_envoi[3] = 0x02;
gyro_spi_wr_32bits(tampon_envoi, tampon_reception);
Gyro_traitementDonnees(tampon_reception);
affiche_tampon_32bits(tampon_reception);
sleep_ms(50); // t=150ms - On ignore, les données ne sont pas actualisées
printf("T=150ms\n");
tampon_envoi[0] = 0x30;
tampon_envoi[1] = 0x00;
tampon_envoi[2] = 0x00;
tampon_envoi[3] = 0x01;
gyro_spi_wr_32bits(tampon_envoi, tampon_reception);
Gyro_traitementDonnees(tampon_reception);
if(Gyro_SensorData.SQ != 0b100){
printf("Gyro_Init - SQ bits (%#01x)!= 0x4", Gyro_SensorData.SQ);
return 1;
}
affiche_tampon_32bits(tampon_reception);
sleep_ms(50); // t=200ms - En cours d'autotest
printf("T=200ms\n");
tampon_envoi[0] = 0x30;
tampon_envoi[1] = 0x00;
tampon_envoi[2] = 0x00;
tampon_envoi[3] = 0x01;
gyro_spi_wr_32bits(tampon_envoi, tampon_reception);
Gyro_traitementDonnees(tampon_reception);
if(Gyro_SensorData.SQ != 0b100){
printf("Gyro_Init - SQ bits (%#01x)!= 0x4", Gyro_SensorData.SQ);
return 1;
}
affiche_tampon_32bits(tampon_reception);
sleep_us(1); // t=200ms + TD - résultats de 200ms + TD, en cours d'autotest.
printf("T=200ms+TD\n");
tampon_envoi[0] = 0x30;
tampon_envoi[1] = 0x00;
tampon_envoi[2] = 0x00;
tampon_envoi[3] = 0x01;
gyro_spi_wr_32bits(tampon_envoi, tampon_reception);
Gyro_traitementDonnees(tampon_reception);
if(Gyro_SensorData.SQ != 0b100){
printf("Gyro_Init - SQ bits (%#01x)!= 0x4", Gyro_SensorData.SQ);
return 1;
}
affiche_tampon_32bits(tampon_reception);
sleep_us(1); // t=200ms + 2TD - doit être nominal
printf("T=200ms+2TD\n");
tampon_envoi[0] = 0x00;
tampon_envoi[1] = 0x00;
tampon_envoi[2] = 0x00;
tampon_envoi[3] = 0x00;
if(gyro_get_sensor_data(tampon_envoi, tampon_reception)){
return 1;
}
return 0;
}
int gyro_config(){
return 0;
}
void gyro_get_vitesse_brute(struct t_angle_gyro* angle_gyro, struct t_angle_gyro* angle_gyro_moy){
uint16_t tampon_envoi[5]={0, 0, 0, 0, 0};
uint8_t tampon_reception[5]="\0\0\0\0\0";
int16_t rot_z;
sleep_us(1); // A supprimer plus tard
if(gyro_get_sensor_data(tampon_envoi, tampon_reception)){
return;
}
rot_z = -Gyro_SensorData.rateData;
if(angle_gyro_moy == NULL){
angle_gyro->rot_x = 0;
angle_gyro->rot_y = 0;
angle_gyro->rot_z = rot_z * 32;
}else{
angle_gyro->rot_x = 0;
angle_gyro->rot_y = 0;
angle_gyro->rot_z = (int32_t) rot_z * 32 - angle_gyro_moy->rot_z;
}
}
void gyro_get_vitesse_normalisee(struct t_angle_gyro* _vitesse_angulaire,
struct t_angle_gyro_double * _vitesse_gyro){
_vitesse_gyro->rot_x = (double)_vitesse_angulaire->rot_x * 0.0125 / 32.0;
_vitesse_gyro->rot_y = (double)_vitesse_angulaire->rot_y * 0.0125 / 32.0;
_vitesse_gyro->rot_z = (double)_vitesse_angulaire->rot_z * 0.0125 / 32.0 * 360. / 357.; // Gain mesuré
}
inline unsigned char Gyro_commande_SensorData(unsigned char autotest){
// On met SQ2 à 1 afin de différencier facilement une erreur et des données
uint8_t tamponGyroscopeEnvoi[4];
tamponGyroscopeEnvoi[0] = 0x30;
tamponGyroscopeEnvoi[1] = 0x00;
tamponGyroscopeEnvoi[2] = 0x00;
if (autotest){
tamponGyroscopeEnvoi[3] = 0x03;
}else{
tamponGyroscopeEnvoi[3] = 0x01;
}
// La parité, dans ce cas est triviale, autant prévoir tous les cas
//Gyro_commande_PariteData(tamponGyroscopeEnvoi);
//return SPI_envData(tamponGyroscopeEnvoi);
}
void Gyro_commande_PariteData(unsigned char* tampon){
unsigned char parite=0,i;
// Obtention de la parité actuelle
for(i=0 ; i< NB_MAX_CHAR_GYRO ; i++){
parite ^= pariteOctet(tampon[i]);
}
// On veut une parité impaire
parite ^= 0x01;
// On insere ce bit dans le message, au bon endroit
tampon[NB_MAX_CHAR_GYRO-1] = tampon[NB_MAX_CHAR_GYRO-1] | parite;
}
unsigned char pariteOctet(unsigned char octet){
unsigned char parite=0,i;
for (i=0 ; i<8 ; i++){
parite ^= octet & 0x01;
octet = octet >> 1;
}
return parite;
}
void Gyro_traitementDonnees(uint8_t * tamponRecu){
Gyro_SensorData.SQ = (tamponRecu[0]>>5) & 0x07;
Gyro_SensorData.P0 = (tamponRecu[0]>>4) & 0x01;
Gyro_SensorData.ST = (tamponRecu[0]>>2) & 0x03;
Gyro_SensorData.rateData = (int)
( (0xC000 &((unsigned int) (tamponRecu[0] & 0x03)<<14)) |
( 0x3FC0 & ((unsigned int) tamponRecu[1] << 6)) |
( 0x003F & (unsigned int) ( tamponRecu[2] >> 2)));
Gyro_SensorData.PLL = (tamponRecu[3] & 0x80) >> 7;
Gyro_SensorData.Q = (tamponRecu[3] & 0x40) >> 6;
Gyro_SensorData.NVM = (tamponRecu[3] & 0x20) >> 5;
Gyro_SensorData.POR = (tamponRecu[3] & 0x10) >> 4;
Gyro_SensorData.PWR = (tamponRecu[3] & 0x08) >> 3;
Gyro_SensorData.CST = (tamponRecu[3] & 0x04) >> 2;
Gyro_SensorData.CHK = (tamponRecu[3] & 0x02) >> 1;
Gyro_SensorData.P1 = (tamponRecu[3] & 0x01);
}
#endif