altos: Add gyro-based orientation tracking
[fw/altos] / altoslib / AltosTelemetryMegaData.java
1 /*
2  * Copyright © 2011 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 package org.altusmetrum.altoslib_2;
19
20 public class AltosTelemetryMegaData extends AltosTelemetryStandard {
21         int     state;
22         
23         int     v_batt;
24         int     v_pyro;
25         int     sense[];
26
27         int     ground_pres;
28         int     ground_accel;
29         int     accel_plus_g;
30         int     accel_minus_g;
31
32         int     acceleration;
33         int     speed;
34         int     height;
35
36         public AltosTelemetryMegaData(int[] bytes) {
37                 super(bytes);
38
39                 state = int8(5);
40
41                 v_batt = int16(6);
42                 v_pyro = int16(8);
43
44                 sense = new int[6];     
45
46                 for (int i = 0; i < 6; i++) {
47                         sense[i] = int8(10 + i) << 4;
48                         sense[i] |= sense[i] >> 8;
49                 }
50
51                 ground_pres = int32(16);
52                 ground_accel = int16(20);
53                 accel_plus_g = int16(22);
54                 accel_minus_g = int16(24);
55
56                 acceleration = int16(26);
57                 speed = int16(28);
58                 height = int16(30);
59         }
60
61         public void update_state(AltosState state) {
62                 super.update_state(state);
63
64                 state.set_state(this.state);
65                         
66                 state.set_battery_voltage(AltosConvert.mega_battery_voltage(v_batt));
67                 state.set_pyro_voltage(AltosConvert.mega_pyro_voltage(v_pyro));
68
69                 state.set_apogee_voltage(AltosConvert.mega_pyro_voltage(sense[4]));
70                 state.set_main_voltage(AltosConvert.mega_pyro_voltage(sense[5]));
71
72                 double voltages[] = new double[4];
73                 for (int i = 0; i < 4; i++)
74                         voltages[i] = AltosConvert.mega_pyro_voltage(sense[i]);
75
76                 state.set_ignitor_voltage(voltages);
77
78                 state.set_ground_accel(ground_accel);
79                 state.set_ground_pressure(ground_pres);
80                 state.set_accel_g(accel_plus_g, accel_minus_g);
81
82                 state.set_kalman(height, speed/16.0, acceleration / 16.0);
83         }
84 }
85