This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
gyro-calibration.c
168 lines (121 loc) · 3.94 KB
/
gyro-calibration.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
/*
// Copyright (c) 2015 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
*/
#include <stdio.h>
#include <math.h>
#include <sys/time.h>
#include <utils/Log.h>
#include <hardware/sensors.h>
#include "common.h"
#include "calibration.h"
/* Gyro defines */
#define GYRO_MAX_ERR 0.05
#define GYRO_DS_SIZE 100
#define GYRO_CALIBRATION_PATH "/data/gyro.conf"
#define GYRO_CAL_VERSION 1.0
static void reset (gyro_cal_t* cal_data)
{
cal_data->count = 0;
cal_data->bias_x = cal_data->bias_y = cal_data->bias_z = 0;
cal_data->min_x = cal_data->min_y = cal_data->min_z = 1.0;
cal_data->max_x = cal_data->max_y = cal_data->max_z =-1.0;
}
void gyro_cal_init (int s)
{
int ret;
gyro_cal_t* cal_data = (gyro_cal_t*) sensor[s].cal_data;
FILE* data_file;
float version;
sensor[s].cal_level = 0;
if (cal_data == NULL)
return;
reset(cal_data);
data_file = fopen (GYRO_CALIBRATION_PATH, "r");
if (data_file == NULL)
return;
ret = fscanf(data_file, "%f %f %f %f", &version,
&cal_data->bias_x, &cal_data->bias_y, &cal_data->bias_z);
if (ret != 4 || version != GYRO_CAL_VERSION) {
reset(cal_data);
ALOGE("Gyro calibration - init failed!\n");
}
fclose(data_file);
}
void gyro_store_data (int s)
{
int ret;
gyro_cal_t* cal_data = (gyro_cal_t*) sensor[s].cal_data;
FILE* data_file;
if (cal_data == NULL)
return;
data_file = fopen (GYRO_CALIBRATION_PATH, "w");
if (data_file == NULL)
return;
ret = fprintf(data_file, "%f %f %f %f", GYRO_CAL_VERSION,
cal_data->bias_x, cal_data->bias_y, cal_data->bias_z);
if (ret < 0)
ALOGE ("Gyro calibration - store data failed!");
fclose(data_file);
}
static int gyro_collect (float x, float y, float z, gyro_cal_t* cal_data)
{
/* Analyze gyroscope data */
if (fabs(x) >= 1 || fabs(y) >= 1 || fabs(z) >= 1) {
/* We're supposed to be standing still ; start over */
reset(cal_data);
return 0; /* Uncalibrated */
}
if (cal_data->count < GYRO_DS_SIZE) {
if (x < cal_data->min_x)
cal_data->min_x = x;
if (y < cal_data->min_y)
cal_data->min_y = y;
if (z < cal_data->min_z)
cal_data->min_z = z;
if (x > cal_data->max_x)
cal_data->max_x = x;
if (y > cal_data->max_y)
cal_data->max_y = y;
if (z > cal_data->max_z)
cal_data->max_z = z;
if (fabs(cal_data->max_x - cal_data->min_x) <= GYRO_MAX_ERR &&
fabs(cal_data->max_y - cal_data->min_y) <= GYRO_MAX_ERR &&
fabs(cal_data->max_z - cal_data->min_z) <= GYRO_MAX_ERR)
cal_data->count++; /* One more conformant sample */
else
reset(cal_data); /* Out of spec sample ; start over */
return 0; /* Still uncalibrated */
}
/* We got enough stable samples to estimate gyroscope bias */
cal_data->bias_x = (cal_data->max_x + cal_data->min_x) / 2;
cal_data->bias_y = (cal_data->max_y + cal_data->min_y) / 2;
cal_data->bias_z = (cal_data->max_z + cal_data->min_z) / 2;
return 1; /* Calibrated! */
}
void calibrate_gyro (int s, sensors_event_t* event)
{
gyro_cal_t* cal_data = (gyro_cal_t*) sensor[s].cal_data;
if (cal_data == NULL)
return;
/* Attempt gyroscope calibration if we have not reached this state */
if (sensor[s].cal_level == 0)
sensor[s].cal_level = gyro_collect(event->data[0], event->data[1],
event->data[2], cal_data);
event->data[0] = event->data[0] - cal_data->bias_x;
event->data[1] = event->data[1] - cal_data->bias_y;
event->data[2] = event->data[2] - cal_data->bias_z;
if (sensor[s].cal_level)
event->gyro.status = SENSOR_STATUS_ACCURACY_HIGH;
}