2 * Copyright © 2011 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; version 2 of the License.
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.
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.
18 package org.altusmetrum.altoslib_1;
21 public class AltosTelemetryRecordSensor extends AltosTelemetryRecordRaw {
39 public AltosTelemetryRecordSensor(int[] in_bytes, int rssi) {
40 super(in_bytes, rssi);
50 acceleration = int16(18);
54 ground_pres = int16(24);
55 ground_accel = int16(26);
56 accel_plus_g = int16(28);
57 accel_minus_g = int16(30);
60 public AltosRecord update_state(AltosRecord prev) {
61 AltosRecord n = super.update_state(prev);
64 if (!(n instanceof AltosRecordTM))
65 next = new AltosRecordTM(n);
67 next = (AltosRecordTM) n;
70 if (type == packet_type_TM_sensor)
73 next.accel = AltosRecord.MISSING;
77 if (type == packet_type_TM_sensor || type == packet_type_Tm_sensor) {
78 next.drogue = sense_d;
81 next.drogue = AltosRecord.MISSING;
82 next.main = AltosRecord.MISSING;
85 next.kalman_acceleration = acceleration / 16.0;
86 next.kalman_speed = speed / 16.0;
87 next.kalman_height = height;
89 next.ground_pres = ground_pres;
90 if (type == packet_type_TM_sensor) {
91 next.ground_accel = ground_accel;
92 next.accel_plus_g = accel_plus_g;
93 next.accel_minus_g = accel_minus_g;
95 next.ground_accel = AltosRecord.MISSING;
96 next.accel_plus_g = AltosRecord.MISSING;
97 next.accel_minus_g = AltosRecord.MISSING;
100 next.seen |= AltosRecord.seen_sensor | AltosRecord.seen_temp_volt;