blob: 7062999b75f81043a8b10caa2488889f68a1d9e8 [file] [log] [blame]
Mathias Agopian73e0bc82011-05-17 22:54:42 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_FUSION_H
18#define ANDROID_FUSION_H
19
20#include <utils/Errors.h>
21
Mathias Agopian6043e532011-05-27 18:18:13 -070022#include "quat.h"
Mathias Agopian73e0bc82011-05-17 22:54:42 -070023#include "mat.h"
Mathias Agopian6043e532011-05-27 18:18:13 -070024#include "vec.h"
Mathias Agopian73e0bc82011-05-17 22:54:42 -070025
26namespace android {
27
Mathias Agopian6043e532011-05-27 18:18:13 -070028typedef mat<float, 3, 4> mat34_t;
29
Mathias Agopian73e0bc82011-05-17 22:54:42 -070030class Fusion {
31 /*
32 * the state vector is made of two sub-vector containing respectively:
33 * - modified Rodrigues parameters
34 * - the estimated gyro bias
35 */
Mathias Agopian6043e532011-05-27 18:18:13 -070036 quat_t x0;
37 vec3_t x1;
Mathias Agopian73e0bc82011-05-17 22:54:42 -070038
39 /*
Max Braun3d41ecd2011-08-17 18:22:52 -070040 * the predicated covariance matrix is made of 4 3x3 sub-matrices and it is
Mathias Agopian73e0bc82011-05-17 22:54:42 -070041 * semi-definite positive.
42 *
43 * P = | P00 P10 | = | P00 P10 |
Mathias Agopian6043e532011-05-27 18:18:13 -070044 * | P01 P11 | | P10t P11 |
Mathias Agopian73e0bc82011-05-17 22:54:42 -070045 *
46 * Since P01 = transpose(P10), the code below never calculates or
Mathias Agopian6043e532011-05-27 18:18:13 -070047 * stores P01.
Mathias Agopian73e0bc82011-05-17 22:54:42 -070048 */
49 mat<mat33_t, 2, 2> P;
50
51 /*
Mathias Agopian6043e532011-05-27 18:18:13 -070052 * the process noise covariance matrix
Mathias Agopian73e0bc82011-05-17 22:54:42 -070053 */
Mathias Agopian6043e532011-05-27 18:18:13 -070054 mat<mat33_t, 2, 2> GQGt;
Mathias Agopian73e0bc82011-05-17 22:54:42 -070055
56public:
57 Fusion();
58 void init();
59 void handleGyro(const vec3_t& w, float dT);
60 status_t handleAcc(const vec3_t& a);
61 status_t handleMag(const vec3_t& m);
Mathias Agopian6043e532011-05-27 18:18:13 -070062 vec4_t getAttitude() const;
Mathias Agopian73e0bc82011-05-17 22:54:42 -070063 vec3_t getBias() const;
64 mat33_t getRotationMatrix() const;
65 bool hasEstimate() const;
66
67private:
Mathias Agopian6043e532011-05-27 18:18:13 -070068 mat<mat33_t, 2, 2> Phi;
Mathias Agopian73e0bc82011-05-17 22:54:42 -070069 vec3_t Ba, Bm;
70 uint32_t mInitState;
Mathias Agopian6043e532011-05-27 18:18:13 -070071 float mGyroRate;
Mathias Agopian73e0bc82011-05-17 22:54:42 -070072 vec<vec3_t, 3> mData;
73 size_t mCount[3];
74 enum { ACC=0x1, MAG=0x2, GYRO=0x4 };
Mathias Agopian6043e532011-05-27 18:18:13 -070075 bool checkInitComplete(int, const vec3_t& w, float d = 0);
76 void initFusion(const vec4_t& q0, float dT);
Max Braun3d41ecd2011-08-17 18:22:52 -070077 void checkState();
Mathias Agopian6043e532011-05-27 18:18:13 -070078 void predict(const vec3_t& w, float dT);
Mathias Agopian73e0bc82011-05-17 22:54:42 -070079 void update(const vec3_t& z, const vec3_t& Bi, float sigma);
Mathias Agopian6043e532011-05-27 18:18:13 -070080 static mat34_t getF(const vec4_t& p);
Mathias Agopian73e0bc82011-05-17 22:54:42 -070081};
82
83}; // namespace android
84
85#endif // ANDROID_FUSION_H