summaryrefslogtreecommitdiff
path: root/include/mag_cal.h
blob: a730fcbe59b38afd519fe697817fe6e224334ce4 (plain)
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
/* Copyright 2015 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Online magnetometer calibration */

#ifndef __CROS_EC_MAG_CAL_H
#define __CROS_EC_MAG_CAL_H

#include "math_util.h"
#include "mat44.h"
#include "vec4.h"
#include "kasa.h"

#define MAG_CAL_MAX_SAMPLES 0xffff
#define MAG_CAL_MIN_BATCH_WINDOW_US    (2 * SECOND)
#define MAG_CAL_MIN_BATCH_SIZE      50      /* samples */

struct mag_cal_t {
	struct kasa_fit kasa_fit;
	fp_t radius;

	intv3_t bias;

	/* number of samples needed to calibrate */
	uint16_t batch_size;
};

void init_mag_cal(struct mag_cal_t *moc);

int mag_cal_update(struct mag_cal_t *moc, const intv3_t v);
#endif  /* __CROS_EC_MAG_CAL_H */