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_9;
21 public class AltosTelemetryConfiguration extends AltosTelemetryStandard {
33 public AltosTelemetryConfiguration(int[] bytes) {
36 device_type = uint8(5);
38 config_major = uint8(8);
39 config_minor = uint8(9);
41 apogee_delay = uint16(10);
42 main_deploy = uint16(12);
43 flight_log_max = uint16(14);
44 callsign = string(16, 8);
45 version = string(24, 8);
48 public void update_state(AltosState state) {
49 super.update_state(state);
50 state.set_device_type(device_type);
51 state.set_flight(flight);
52 state.set_config(config_major, config_minor, flight_log_max);
53 if (device_type == AltosLib.product_telegps)
54 state.set_battery_voltage(AltosConvert.tele_gps_voltage(v_batt));
56 state.set_flight_params(apogee_delay, main_deploy);
58 state.set_callsign(callsign);
59 state.set_firmware_version(version);