2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
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.
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.
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.
19 #ifndef _AO_MICROPEAK_H_
20 #define _AO_MICROPEAK_H_
22 #define SAMPLE_SLEEP AO_MS_TO_TICKS(96)
24 /* 64 sample, or about six seconds worth */
25 #define GROUND_AVG_SHIFT 6
26 #define GROUND_AVG (1 << GROUND_AVG_SHIFT)
28 /* Pressure change (in Pa) to detect boost */
30 #define BOOST_DETECT 360 /* 30m at sea level, 36m at 2000m */
34 #define LOG_INTERVAL 2 /* 192 ms */
37 #define AO_LOG_ID_MICROPEAK 0
38 #define AO_LOG_ID_MICROKITE 1
41 #define AO_LOG_ID AO_LOG_ID_MICROPEAK
44 /* Wait after power on before doing anything to give the user time to assemble the rocket */
46 #define BOOST_DELAY AO_SEC_TO_TICKS(60)
49 /* Pressure change (in Pa) to detect landing */
50 #define LAND_DETECT 24 /* 2m at sea level, 2.4m at 2000m */
52 /* Current sensor pressure value */
55 /* Average pressure value on ground */
56 extern uint32_t pa_ground;
58 /* Minimum recorded filtered pressure value */
59 extern uint32_t pa_min;
61 /* Pressure values converted to altitudes */
62 extern alt_t ground_alt, max_alt;
64 /* max_alt - ground_alt */
65 extern alt_t ao_max_height;
73 #define ACCEL_LOCK_PA -20
74 #define ACCEL_LOCK_TIME 10
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 */
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 */
85 ao_microkalman_init(void);
88 ao_microkalman_predict(void);
91 ao_microkalman_correct(void);