0ec407d7bad503c15d2e37148b4e02ef3156f818
[fw/altos] / src / product / ao_micropeak.h
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #ifndef _AO_MICROPEAK_H_
19 #define _AO_MICROPEAK_H_
20
21 #define SAMPLE_SLEEP            AO_MS_TO_TICKS(96)
22
23 /* 64 sample, or about six seconds worth */
24 #define GROUND_AVG_SHIFT        6
25 #define GROUND_AVG              (1 << GROUND_AVG_SHIFT)
26
27 /* Pressure change (in Pa) to detect boost */
28 #ifndef BOOST_DETECT
29 #define BOOST_DETECT            360     /* 30m at sea level, 36m at 2000m */
30 #endif
31
32 /* Wait after power on before doing anything to give the user time to assemble the rocket */
33 #define BOOST_DELAY             AO_SEC_TO_TICKS(60)
34
35 /* Pressure change (in Pa) to detect landing */
36 #define LAND_DETECT             24      /* 2m at sea level, 2.4m at 2000m */
37
38 /* Current sensor pressure value */
39 extern uint32_t pa;
40
41 /* Average pressure value on ground */
42 extern uint32_t pa_ground;
43
44 /* Minimum recorded filtered pressure value */
45 extern uint32_t pa_min;
46
47 /* Pressure values converted to altitudes */
48 extern alt_t    ground_alt, max_alt;
49
50 /* max_alt - ground_alt */
51 extern alt_t    ao_max_height;
52
53 void
54 ao_pa_get(void);
55
56 void
57 ao_microflight(void);
58
59 #define ACCEL_LOCK_PA           -20
60 #define ACCEL_LOCK_TIME         10
61
62 extern uint32_t ao_k_pa;                /* 24.8 fixed point */
63 extern int32_t  ao_k_pa_speed;          /* 16.16 fixed point */
64 extern int32_t  ao_k_pa_accel;          /* 16.16 fixed point */
65
66 extern uint32_t ao_pa;                  /* integer portion */
67 extern int16_t  ao_pa_speed;            /* integer portion */
68 extern int16_t  ao_pa_accel;            /* integer portion */
69
70 void
71 ao_microkalman_init(void);
72
73 void
74 ao_microkalman_predict(void);
75
76 void
77 ao_microkalman_correct(void);
78         
79 #endif
80