Switch from GPLv2 to GPLv2+
[fw/altos] / altoslib / AltosTelemetrySensor.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; 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 package org.altusmetrum.altoslib_11;
20
21
22 public class AltosTelemetrySensor extends AltosTelemetryStandard {
23         int     state;
24         int     accel;
25         int     pres;
26         int     temp;
27         int     v_batt;
28         int     sense_d;
29         int     sense_m;
30
31         int     acceleration;
32         int     speed;
33         int     height;
34
35         int     ground_accel;
36         int     ground_pres;
37         int     accel_plus_g;
38         int     accel_minus_g;
39
40         public AltosTelemetrySensor(int[] bytes) {
41                 super(bytes);
42                 state         = uint8(5);
43
44                 accel         = int16(6);
45                 pres          = int16(8);
46                 temp          = int16(10);
47                 v_batt        = int16(12);
48                 sense_d       = int16(14);
49                 sense_m       = int16(16);
50
51                 acceleration  = int16(18);
52                 speed         = int16(20);
53                 height        = int16(22);
54
55                 ground_pres   = int16(24);
56                 ground_accel  = int16(26);
57                 accel_plus_g  = int16(28);
58                 accel_minus_g = int16(30);
59         }
60
61         public void update_state(AltosState state) {
62                 super.update_state(state);
63
64                 state.set_state(this.state);
65                 if (type == packet_type_TM_sensor) {
66                         state.set_ground_accel(ground_accel);
67                         state.set_accel_g(accel_plus_g, accel_minus_g);
68                         state.set_accel(accel);
69                 }
70                 state.set_ground_pressure(AltosConvert.barometer_to_pressure(ground_pres));
71                 state.set_pressure(AltosConvert.barometer_to_pressure(pres));
72                 state.set_temperature(AltosConvert.thermometer_to_temperature(temp));
73                 state.set_battery_voltage(AltosConvert.cc_battery_to_voltage(v_batt));
74                 if (type == packet_type_TM_sensor || type == packet_type_Tm_sensor) {
75                         state.set_apogee_voltage(AltosConvert.cc_ignitor_to_voltage(sense_d));
76                         state.set_main_voltage(AltosConvert.cc_ignitor_to_voltage(sense_m));
77                 }
78
79                 state.set_kalman(height, speed/16.0, acceleration / 16.0);
80         }
81 }