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; 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 package org.altusmetrum.altoslib_12;
22 public class AltosTelemetryMini2 extends AltosTelemetryStandard {
24 int state() { return uint8(5); }
26 int v_batt() { return int16(6); }
27 int sense_a() { return int16(8); }
28 int sense_m() { return int16(10); }
30 int pres() { return int32(12); }
31 int temp() { return int16(16); }
33 int acceleration() { return int16(18); }
34 int speed() { return int16(20); }
35 int height() { return int16(22); }
37 int ground_pres() { return int32(24); }
39 public AltosTelemetryMini2(int[] bytes) throws AltosCRCException {
43 public void provide_data(AltosDataListener listener) {
44 super.provide_data(listener);
46 listener.set_state(state());
48 listener.set_battery_voltage(AltosConvert.tele_mini_2_voltage(v_batt()));
49 listener.set_apogee_voltage(AltosConvert.tele_mini_2_voltage(sense_a()));
50 listener.set_main_voltage(AltosConvert.tele_mini_2_voltage(sense_m()));
52 AltosCalData cal_data = listener.cal_data();
54 cal_data.set_ground_pressure(ground_pres());
56 listener.set_pressure(pres());
57 listener.set_temperature(temp()/100.0);
59 listener.set_kalman(height(), speed()/16.0, acceleration()/16.0);