396b9a235b60ac304107d1e6bcb45cedc503e59d
[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 #ifndef LOG_INTERVAL
33 #define LOG_INTERVAL             2      /* 192 ms */
34 #endif
35
36 #define AO_LOG_ID_MICROPEAK     0
37 #define AO_LOG_ID_MICROKITE     1
38
39 #ifndef AO_LOG_ID
40 #define AO_LOG_ID               AO_LOG_ID_MICROPEAK
41 #endif
42
43 /* Wait after power on before doing anything to give the user time to assemble the rocket */
44 #define BOOST_DELAY             AO_SEC_TO_TICKS(60)
45
46 /* Pressure change (in Pa) to detect landing */
47 #define LAND_DETECT             24      /* 2m at sea level, 2.4m at 2000m */
48
49 /* Current sensor pressure value */
50 extern uint32_t pa;
51
52 /* Average pressure value on ground */
53 extern uint32_t pa_ground;
54
55 /* Minimum recorded filtered pressure value */
56 extern uint32_t pa_min;
57
58 /* Pressure values converted to altitudes */
59 extern alt_t    ground_alt, max_alt;
60
61 /* max_alt - ground_alt */
62 extern alt_t    ao_max_height;
63
64 void
65 ao_pa_get(void);
66
67 void
68 ao_microflight(void);
69
70 #define ACCEL_LOCK_PA           -20
71 #define ACCEL_LOCK_TIME         10
72
73 extern uint32_t ao_k_pa;                /* 24.8 fixed point */
74 extern int32_t  ao_k_pa_speed;          /* 16.16 fixed point */
75 extern int32_t  ao_k_pa_accel;          /* 16.16 fixed point */
76
77 extern uint32_t ao_pa;                  /* integer portion */
78 extern int16_t  ao_pa_speed;            /* integer portion */
79 extern int16_t  ao_pa_accel;            /* integer portion */
80
81 void
82 ao_microkalman_init(void);
83
84 void
85 ao_microkalman_predict(void);
86
87 void
88 ao_microkalman_correct(void);
89         
90 #endif
91