altoslib: Add Ms5607 constructor that just takes config_data
[fw/altos] / altoslib / AltosTelemetry.java
1 /*
2  * Copyright © 2010 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 import java.text.*;
22
23 /*
24  * Telemetry data contents
25  */
26
27 public abstract class AltosTelemetry implements AltosStateUpdate {
28
29         /* All telemetry packets have these fields */
30         public int      tick;
31         public int      serial;
32         public int      rssi;
33         public int      status;
34
35         /* Mark when we received the packet */
36         long            received_time;
37
38         static boolean cksum(int[] bytes) {
39                 int     sum = 0x5a;
40                 for (int i = 1; i < bytes.length - 1; i++)
41                         sum += bytes[i];
42                 sum &= 0xff;
43                 return sum == bytes[bytes.length - 1];
44         }
45
46         public void update_state(AltosState state) {
47                 state.set_serial(serial);
48                 if (state.state() == AltosLib.ao_flight_invalid)
49                         state.set_state(AltosLib.ao_flight_startup);
50                 state.set_tick(tick);
51                 state.set_rssi(rssi, status);
52                 state.set_received_time(received_time);
53         }
54
55         final static int PKT_APPEND_STATUS_1_CRC_OK             = (1 << 7);
56         final static int PKT_APPEND_STATUS_1_LQI_MASK           = (0x7f);
57         final static int PKT_APPEND_STATUS_1_LQI_SHIFT          = 0;
58
59         final static int packet_type_TM_sensor = 0x01;
60         final static int packet_type_Tm_sensor = 0x02;
61         final static int packet_type_Tn_sensor = 0x03;
62         final static int packet_type_configuration = 0x04;
63         final static int packet_type_location = 0x05;
64         final static int packet_type_satellite = 0x06;
65         final static int packet_type_companion = 0x07;
66         final static int packet_type_mega_sensor = 0x08;
67         final static int packet_type_mega_data = 0x09;
68         final static int packet_type_metrum_sensor = 0x0a;
69         final static int packet_type_metrum_data = 0x0b;
70         final static int packet_type_mini2 = 0x10;
71         final static int packet_type_mini3 = 0x11;
72
73         static AltosTelemetry parse_hex(String hex)  throws ParseException, AltosCRCException {
74                 AltosTelemetry  telem = null;
75
76                 int[] bytes;
77                 try {
78                         bytes = AltosLib.hexbytes(hex);
79                 } catch (NumberFormatException ne) {
80                         throw new ParseException(ne.getMessage(), 0);
81                 }
82
83                 /* one for length, one for checksum */
84                 if (bytes[0] != bytes.length - 2)
85                         throw new ParseException(String.format("invalid length %d != %d\n",
86                                                                bytes[0],
87                                                                bytes.length - 2), 0);
88                 if (!cksum(bytes))
89                         throw new ParseException(String.format("invalid line \"%s\"", hex), 0);
90
91                 int     rssi = AltosLib.int8(bytes, bytes.length - 3) / 2 - 74;
92                 int     status = AltosLib.uint8(bytes, bytes.length - 2);
93
94                 if ((status & PKT_APPEND_STATUS_1_CRC_OK) == 0)
95                         throw new AltosCRCException(rssi);
96
97                 /* length, data ..., rssi, status, checksum -- 4 bytes extra */
98                 switch (bytes.length) {
99                 case AltosLib.ao_telemetry_standard_len + 4:
100                         telem = AltosTelemetryStandard.parse_hex(bytes);
101                         break;
102                 case AltosLib.ao_telemetry_0_9_len + 4:
103                         telem = new AltosTelemetryLegacy(bytes);
104                         break;
105                 case AltosLib.ao_telemetry_0_8_len + 4:
106                         telem = new AltosTelemetryLegacy(bytes);
107                         break;
108                 default:
109                         throw new ParseException(String.format("Invalid packet length %d", bytes.length), 0);
110                 }
111                 if (telem != null) {
112                         telem.received_time = System.currentTimeMillis();
113                         telem.rssi = rssi;
114                         telem.status = status;
115                 }
116                 return telem;
117         }
118
119         public static int extend_height(AltosState state, int height_16) {
120                 double  compare_height;
121                 int     height = height_16;
122
123                 if (state.gps != null && state.gps.alt != AltosLib.MISSING) {
124                         compare_height = state.gps_height();
125                 } else {
126                         compare_height = state.height();
127                 }
128
129                 if (compare_height != AltosLib.MISSING) {
130                         int     high_bits = (int) Math.floor (compare_height / 65536.0);
131
132                         height = (high_bits << 16) | (height_16 & 0xffff);
133
134                         if (Math.abs(height + 65536 - compare_height) < Math.abs(height - compare_height))
135                                 height += 65536;
136                         else if (Math.abs(height - 65536 - compare_height) < Math.abs(height - compare_height))
137                                 height -= 65536;
138                 }
139                 return height;
140         }
141
142         public static AltosTelemetry parse(String line) throws ParseException, AltosCRCException {
143                 String[] word = line.split("\\s+");
144                 int i =0;
145
146                 if (word[i].equals("CRC") && word[i+1].equals("INVALID")) {
147                         i += 2;
148                         AltosParse.word(word[i++], "RSSI");
149                         throw new AltosCRCException(AltosParse.parse_int(word[i++]));
150                 }
151
152                 AltosTelemetry telem;
153
154                 if (word[i].equals("TELEM")) {
155                         telem = parse_hex(word[i+1]);
156                 } else {
157                         telem = new AltosTelemetryLegacy(line);
158                 }
159                 return telem;
160         }
161 }