Switch from GPLv2 to GPLv2+
[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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #ifndef _AO_MICROPEAK_H_
20 #define _AO_MICROPEAK_H_
21
22 #define SAMPLE_SLEEP            AO_MS_TO_TICKS(96)
23
24 /* 64 sample, or about six seconds worth */
25 #define GROUND_AVG_SHIFT        6
26 #define GROUND_AVG              (1 << GROUND_AVG_SHIFT)
27
28 /* Pressure change (in Pa) to detect boost */
29 #ifndef BOOST_DETECT
30 #define BOOST_DETECT            360     /* 30m at sea level, 36m at 2000m */
31 #endif
32
33 #ifndef LOG_INTERVAL
34 #define LOG_INTERVAL             2      /* 192 ms */
35 #endif
36
37 #define AO_LOG_ID_MICROPEAK     0
38 #define AO_LOG_ID_MICROKITE     1
39
40 #ifndef AO_LOG_ID
41 #define AO_LOG_ID               AO_LOG_ID_MICROPEAK
42 #endif
43
44 /* Wait after power on before doing anything to give the user time to assemble the rocket */
45 #ifndef BOOST_DELAY
46 #define BOOST_DELAY             AO_SEC_TO_TICKS(60)
47 #endif
48
49 /* Pressure change (in Pa) to detect landing */
50 #define LAND_DETECT             24      /* 2m at sea level, 2.4m at 2000m */
51
52 /* Current sensor pressure value */
53 extern uint32_t pa;
54
55 /* Average pressure value on ground */
56 extern uint32_t pa_ground;
57
58 /* Minimum recorded filtered pressure value */
59 extern uint32_t pa_min;
60
61 /* Pressure values converted to altitudes */
62 extern alt_t    ground_alt, max_alt;
63
64 /* max_alt - ground_alt */
65 extern alt_t    ao_max_height;
66
67 void
68 ao_pa_get(void);
69
70 void
71 ao_microflight(void);
72
73 #define ACCEL_LOCK_PA           -20
74 #define ACCEL_LOCK_TIME         10
75
76 extern uint32_t ao_k_pa;                /* 24.8 fixed point */
77 extern int32_t  ao_k_pa_speed;          /* 16.16 fixed point */
78 extern int32_t  ao_k_pa_accel;          /* 16.16 fixed point */
79
80 extern uint32_t ao_pa;                  /* integer portion */
81 extern int16_t  ao_pa_speed;            /* integer portion */
82 extern int16_t  ao_pa_accel;            /* integer portion */
83
84 void
85 ao_microkalman_init(void);
86
87 void
88 ao_microkalman_predict(void);
89
90 void
91 ao_microkalman_correct(void);
92         
93 #endif
94