imu: dos2unix
[fpv.git] / imuboard / MadgwickAHRS.c
1 /*
2  * Copyright (c) 2014, Olivier MATZ <zer0@droids-corp.org>
3  * Copyright (c) 2011-2012, SOH Madgwick
4  *
5  *  This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19
20 //============================================================================
21 // MadgwickAHRS.c
22 //============================================================================
23 //
24 // Implementation of Madgwick's IMU and AHRS algorithms.
25 // See: http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms
26 //
27 // Date                 Author          Notes
28 // 29/09/2011   SOH Madgwick    Initial release
29 // 02/10/2011   SOH Madgwick    Optimised for reduced CPU load
30 // 19/02/2012   SOH Madgwick    Magnetometer measurement is normalised
31 //
32 //============================================================================
33
34 #include "MadgwickAHRS.h"
35 #include <math.h>
36
37 //#define sampleFreq    512.0f          // sample frequency in Hz
38 //#define sampleFreq    46.0f           // sample frequency in Hz
39 #define sampleFreq      85.0f           // sample frequency in Hz
40 #define betaDef         0.1f            // 2 * proportional gain
41
42 static float invSqrt(float x)
43 {
44         return 1.0f / sqrtf(x);
45 }
46
47 /* AHRS algorithm update */
48 void MadgwickAHRSupdate(const struct imu_info *imu, struct quaternion *quat)
49 {
50         float recipNorm;
51         float s0, s1, s2, s3;
52         float qDot1, qDot2, qDot3, qDot4;
53         float hx, hy;
54         float _2q0mx, _2q0my, _2q0mz, _2q1mx, _2bx, _2bz, _4bx, _4bz;
55         float _2q0, _2q1, _2q2, _2q3, _2q0q2, _2q2q3, q0q0, q0q1, q0q2, q0q3;
56         float q1q1, q1q2, q1q3, q2q2, q2q3, q3q3;
57         float mx, my, mz, ax, ay, az, gx, gy, gz;
58         float q0, q1, q2, q3;
59
60         /* Use IMU algorithm if magnetometer measurement invalid (avoids NaN in
61          * magnetometer normalisation) */
62         if ((imu->mx == 0.0f) && (imu->my == 0.0f) && (imu->mz == 0.0f)) {
63                 MadgwickAHRSupdateIMU(imu, quat);
64                 return;
65         }
66
67         /* use local variables, it's more readable */
68         q0 = quat->q0; q1 = quat->q1; q2 = quat->q2; q3 = quat->q3;
69         gx = imu->gx; gy = imu->gy; gz = imu->gz;
70         ax = imu->ax; ay = imu->ay; az = imu->az;
71         mx = imu->mx; my = imu->my; mz = imu->mz;
72
73         /* Rate of change of quaternion from gyroscope */
74         qDot1 = 0.5f * (-q1 * gx - q2 * gy - q3 * gz);
75         qDot2 = 0.5f * (q0 * gx + q2 * gz - q3 * gy);
76         qDot3 = 0.5f * (q0 * gy - q1 * gz + q3 * gx);
77         qDot4 = 0.5f * (q0 * gz + q1 * gy - q2 * gx);
78
79         /* Compute feedback only if accelerometer measurement valid (avoids NaN
80          * in accelerometer normalisation) */
81         if (!((ax == 0.0f) && (ay == 0.0f) && (az == 0.0f))) {
82
83                 /* Normalise accelerometer measurement */
84                 recipNorm = invSqrt(ax * ax + ay * ay +
85                         az * az);
86                 ax *= recipNorm;
87                 ay *= recipNorm;
88                 az *= recipNorm;
89
90                 /* Normalise magnetometer measurement */
91                 recipNorm = invSqrt(mx * mx + my * my +
92                         mz * mz);
93                 mx *= recipNorm;
94                 my *= recipNorm;
95                 mz *= recipNorm;
96
97                 /* Auxiliary variables to avoid repeated arithmetic */
98                 _2q0mx = 2.0f * q0 * mx;
99                 _2q0my = 2.0f * q0 * my;
100                 _2q0mz = 2.0f * q0 * mz;
101                 _2q1mx = 2.0f * q1 * mx;
102                 _2q0 = 2.0f * q0;
103                 _2q1 = 2.0f * q1;
104                 _2q2 = 2.0f * q2;
105                 _2q3 = 2.0f * q3;
106                 _2q0q2 = 2.0f * q0 * q2;
107                 _2q2q3 = 2.0f * q2 * q3;
108                 q0q0 = q0 * q0;
109                 q0q1 = q0 * q1;
110                 q0q2 = q0 * q2;
111                 q0q3 = q0 * q3;
112                 q1q1 = q1 * q1;
113                 q1q2 = q1 * q2;
114                 q1q3 = q1 * q3;
115                 q2q2 = q2 * q2;
116                 q2q3 = q2 * q3;
117                 q3q3 = q3 * q3;
118
119                 /* Reference direction of Earth's magnetic field */
120                 hx = mx * q0q0 - _2q0my * q3 + _2q0mz * q2 + mx * q1q1 + _2q1 * my * q2 + _2q1 * mz * q3 - mx * q2q2 - mx * q3q3;
121                 hy = _2q0mx * q3 + my * q0q0 - _2q0mz * q1 + _2q1mx * q2 - my * q1q1 + my * q2q2 + _2q2 * mz * q3 - my * q3q3;
122                 _2bx = sqrt(hx * hx + hy * hy);
123                 _2bz = -_2q0mx * q2 + _2q0my * q1 + mz * q0q0 + _2q1mx * q3 - mz * q1q1 + _2q2 * my * q3 - mz * q2q2 + mz * q3q3;
124                 _4bx = 2.0f * _2bx;
125                 _4bz = 2.0f * _2bz;
126
127                 /* Gradient decent algorithm corrective step */
128                 s0 = -_2q2 * (2.0f * q1q3 - _2q0q2 - ax) + _2q1 * (2.0f * q0q1 + _2q2q3 - ay) - _2bz * q2 * (_2bx * (0.5f - q2q2 - q3q3) + _2bz * (q1q3 - q0q2) - mx) + (-_2bx * q3 + _2bz * q1) * (_2bx * (q1q2 - q0q3) + _2bz * (q0q1 + q2q3) - my) + _2bx * q2 * (_2bx * (q0q2 + q1q3) + _2bz * (0.5f - q1q1 - q2q2) - mz);
129                 s1 = _2q3 * (2.0f * q1q3 - _2q0q2 - ax) + _2q0 * (2.0f * q0q1 + _2q2q3 - ay) - 4.0f * q1 * (1 - 2.0f * q1q1 - 2.0f * q2q2 - az) + _2bz * q3 * (_2bx * (0.5f - q2q2 - q3q3) + _2bz * (q1q3 - q0q2) - mx) + (_2bx * q2 + _2bz * q0) * (_2bx * (q1q2 - q0q3) + _2bz * (q0q1 + q2q3) - my) + (_2bx * q3 - _4bz * q1) * (_2bx * (q0q2 + q1q3) + _2bz * (0.5f - q1q1 - q2q2) - mz);
130                 s2 = -_2q0 * (2.0f * q1q3 - _2q0q2 - ax) + _2q3 * (2.0f * q0q1 + _2q2q3 - ay) - 4.0f * q2 * (1 - 2.0f * q1q1 - 2.0f * q2q2 - az) + (-_4bx * q2 - _2bz * q0) * (_2bx * (0.5f - q2q2 - q3q3) + _2bz * (q1q3 - q0q2) - mx) + (_2bx * q1 + _2bz * q3) * (_2bx * (q1q2 - q0q3) + _2bz * (q0q1 + q2q3) - my) + (_2bx * q0 - _4bz * q2) * (_2bx * (q0q2 + q1q3) + _2bz * (0.5f - q1q1 - q2q2) - mz);
131                 s3 = _2q1 * (2.0f * q1q3 - _2q0q2 - ax) + _2q2 * (2.0f * q0q1 + _2q2q3 - ay) + (-_4bx * q3 + _2bz * q1) * (_2bx * (0.5f - q2q2 - q3q3) + _2bz * (q1q3 - q0q2) - mx) + (-_2bx * q0 + _2bz * q2) * (_2bx * (q1q2 - q0q3) + _2bz * (q0q1 + q2q3) - my) + _2bx * q1 * (_2bx * (q0q2 + q1q3) + _2bz * (0.5f - q1q1 - q2q2) - mz);
132
133                 /* normalize step magnitude */
134                 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3);
135                 s0 *= recipNorm;
136                 s1 *= recipNorm;
137                 s2 *= recipNorm;
138                 s3 *= recipNorm;
139
140                 /* Apply feedback step */
141                 qDot1 -= betaDef * s0;
142                 qDot2 -= betaDef * s1;
143                 qDot3 -= betaDef * s2;
144                 qDot4 -= betaDef * s3;
145         }
146
147         /* Integrate rate of change of quaternion to yield quaternion */
148         q0 += qDot1 * (1.0f / sampleFreq);
149         q1 += qDot2 * (1.0f / sampleFreq);
150         q2 += qDot3 * (1.0f / sampleFreq);
151         q3 += qDot4 * (1.0f / sampleFreq);
152
153         /* Normalise quaternion */
154         recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3);
155         q0 *= recipNorm;
156         q1 *= recipNorm;
157         q2 *= recipNorm;
158         q3 *= recipNorm;
159
160         /* update quaternion in structure */
161         quat->q0 = q0;
162         quat->q1 = q1;
163         quat->q2 = q2;
164         quat->q3 = q3;
165 }
166
167 /* IMU algorithm update (does not take magneto in account) */
168 void MadgwickAHRSupdateIMU(const struct imu_info *imu, struct quaternion *quat)
169 {
170         float recipNorm;
171         float s0, s1, s2, s3;
172         float qDot1, qDot2, qDot3, qDot4;
173         float _2q0, _2q1, _2q2, _2q3, _4q0, _4q1, _4q2 ,_8q1, _8q2, q0q0, q1q1, q2q2, q3q3;
174         float ax, ay, az, gx, gy, gz;
175         float q0, q1, q2, q3;
176
177         /* use local variables, it's more readable */
178         q0 = quat->q0; q1 = quat->q1; q2 = quat->q2; q3 = quat->q3;
179         gx = imu->gx; gy = imu->gy; gz = imu->gz;
180         ax = imu->ax; ay = imu->ay; az = imu->az;
181
182         /* Rate of change of quaternion from gyroscope */
183         qDot1 = 0.5f * (-q1 * gx - q2 * gy - q3 * gz);
184         qDot2 = 0.5f * (q0 * gx + q2 * gz - q3 * gy);
185         qDot3 = 0.5f * (q0 * gy - q1 * gz + q3 * gx);
186         qDot4 = 0.5f * (q0 * gz + q1 * gy - q2 * gx);
187
188
189         /* Compute feedback only if accelerometer measurement valid (avoids NaN in accelerometer normalisation) */
190         if(!((ax == 0.0f) && (ay == 0.0f) && (az == 0.0f))) {
191
192                 /* Normalise accelerometer measurement */
193                 recipNorm = invSqrt(ax * ax + ay * ay + az * az);
194                 ax *= recipNorm;
195                 ay *= recipNorm;
196                 az *= recipNorm;
197
198                 /* Auxiliary variables to avoid repeated arithmetic */
199                 _2q0 = 2.0f * q0;
200                 _2q1 = 2.0f * q1;
201                 _2q2 = 2.0f * q2;
202                 _2q3 = 2.0f * q3;
203                 _4q0 = 4.0f * q0;
204                 _4q1 = 4.0f * q1;
205                 _4q2 = 4.0f * q2;
206                 _8q1 = 8.0f * q1;
207                 _8q2 = 8.0f * q2;
208                 q0q0 = q0 * q0;
209                 q1q1 = q1 * q1;
210                 q2q2 = q2 * q2;
211                 q3q3 = q3 * q3;
212
213                 /* Gradient decent algorithm corrective step */
214                 s0 = _4q0 * q2q2 + _2q2 * ax + _4q0 * q1q1 - _2q1 * ay;
215                 s1 = _4q1 * q3q3 - _2q3 * ax + 4.0f * q0q0 * q1 - _2q0 * ay - _4q1 + _8q1 * q1q1 + _8q1 * q2q2 + _4q1 * az;
216                 s2 = 4.0f * q0q0 * q2 + _2q0 * ax + _4q2 * q3q3 - _2q3 * ay - _4q2 + _8q2 * q1q1 + _8q2 * q2q2 + _4q2 * az;
217                 s3 = 4.0f * q1q1 * q3 - _2q1 * ax + 4.0f * q2q2 * q3 - _2q2 * ay;
218                 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); /* normalise step magnitude */
219
220                 s0 *= recipNorm;
221                 s1 *= recipNorm;
222                 s2 *= recipNorm;
223                 s3 *= recipNorm;
224
225                 /* Apply feedback step */
226                 qDot1 -= betaDef * s0;
227                 qDot2 -= betaDef * s1;
228                 qDot3 -= betaDef * s2;
229                 qDot4 -= betaDef * s3;
230         }
231
232         /* Integrate rate of change of quaternion to yield quaternion */
233         q0 += qDot1 * (1.0f / sampleFreq);
234         q1 += qDot2 * (1.0f / sampleFreq);
235         q2 += qDot3 * (1.0f / sampleFreq);
236         q3 += qDot4 * (1.0f / sampleFreq);
237
238         /* Normalise quaternion */
239         recipNorm = invSqrt(q0 * q0 + q1 * q1 +
240                 q2 * q2 + q3 * q3);
241         q0 *= recipNorm;
242         q1 *= recipNorm;
243         q2 *= recipNorm;
244         q3 *= recipNorm;
245
246         /* update quaternion in structure */
247         quat->q0 = q0;
248         quat->q1 = q1;
249         quat->q2 = q2;
250         quat->q3 = q3;
251 }
252