altoslib: Add TeleMini v3 support
[fw/altos] / altoslib / AltosTelemetryMini2.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 AltosTelemetryMini2 extends AltosTelemetryStandard {
23         int     state;
24
25         int     v_batt;
26         int     sense_a;
27         int     sense_m;
28
29         int     pres;
30         int     temp;
31
32         int     acceleration;
33         int     speed;
34         int     height;
35
36         int     ground_pres;
37
38         public AltosTelemetryMini2(int[] bytes) {
39                 super(bytes);
40
41                 state         = int8(5);
42
43                 v_batt        = int16(6);
44                 sense_a       = int16(8);
45                 sense_m       = int16(10);
46
47                 pres          = int32(12);
48                 temp          = int16(16);
49
50                 acceleration  = int16(18);
51                 speed         = int16(20);
52                 height        = int16(22);
53
54                 ground_pres   = int32(24);
55         }
56
57         public void update_state(AltosState state) {
58                 super.update_state(state);
59
60                 state.set_state(this.state);
61
62                 state.set_battery_voltage(AltosConvert.tele_mini_2_voltage(v_batt));
63                 state.set_apogee_voltage(AltosConvert.tele_mini_2_voltage(sense_a));
64                 state.set_main_voltage(AltosConvert.tele_mini_2_voltage(sense_m));
65
66                 state.set_ground_pressure(ground_pres);
67
68                 state.set_pressure(pres);
69                 state.set_temperature(temp/100.0);
70
71                 state.set_kalman(height, speed/16.0, acceleration/16.0);
72         }
73 }