altosui: AltosEepromReader was mis-setting boost tick
[fw/altos] / ao-tools / altosui / AltosEepromReader.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; version 2 of the License.
7  *
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.
12  *
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.
16  */
17
18 package altosui;
19
20 import java.awt.*;
21 import java.awt.event.*;
22 import javax.swing.*;
23 import javax.swing.filechooser.FileNameExtensionFilter;
24 import javax.swing.table.*;
25 import java.io.*;
26 import java.util.*;
27 import java.text.*;
28 import java.util.prefs.*;
29 import java.util.concurrent.LinkedBlockingQueue;
30
31 import altosui.AltosRecord;
32 import altosui.AltosState;
33 import altosui.AltosDeviceDialog;
34 import altosui.AltosPreferences;
35 import altosui.AltosLog;
36 import altosui.AltosVoice;
37 import altosui.AltosEepromMonitor;
38
39 /*
40  * AltosRecords with an index field so they can be sorted by tick while preserving
41  * the original ordering for elements with matching ticks
42  */
43 class AltosOrderedRecord extends AltosEepromRecord implements Comparable<AltosOrderedRecord> {
44
45         int     index;
46
47         public AltosOrderedRecord(String line, int in_index, int prev_tick)
48                 throws ParseException {
49                 super(line);
50                 int new_tick = tick | (prev_tick & ~0xffff);
51                 if (new_tick < prev_tick) {
52                         if (prev_tick - new_tick > 0x8000)
53                                 new_tick += 0x10000;
54                 }
55                 tick = new_tick;
56                 index = in_index;
57         }
58
59         public int compareTo(AltosOrderedRecord o) {
60                 int     tick_diff = tick - o.tick;
61                 if (tick_diff != 0)
62                         return tick_diff;
63                 return index - o.index;
64         }
65 }
66
67 public class AltosEepromReader extends AltosReader {
68
69         static final int        seen_flight = 1;
70         static final int        seen_sensor = 2;
71         static final int        seen_temp_volt = 4;
72         static final int        seen_deploy = 8;
73         static final int        seen_gps_time = 16;
74         static final int        seen_gps_lat = 32;
75         static final int        seen_gps_lon = 64;
76
77         static final int        seen_basic = seen_flight|seen_sensor|seen_temp_volt|seen_deploy;
78
79         AltosRecord             state;
80         AltosOrderedRecord      record;
81
82         TreeSet<AltosOrderedRecord>     records;
83
84         Iterator<AltosOrderedRecord>                    record_iterator;
85
86         int                     seen;
87
88         int                     index;
89
90         boolean                 last_reported;
91
92         double                  ground_pres;
93         double                  ground_accel;
94
95         int                     n_pad_samples;
96
97         int                     gps_tick;
98
99         boolean                 saw_boost;
100
101         int                     boost_tick;
102
103         public AltosRecord read() throws IOException, ParseException {
104                 for (;;) {
105                         if (record == null) {
106                                 if (!record_iterator.hasNext()) {
107                                         if (last_reported)
108                                                 return null;
109                                         last_reported = true;
110                                         return state;
111                                 }
112                                 record = record_iterator.next();
113
114                                 if ((seen & seen_basic) == seen_basic && record.tick != state.tick) {
115                                         AltosRecord r = new AltosRecord(state);
116                                         r.time = (r.tick - boost_tick) / 100.0;
117                                         return r;
118                                 }
119                         }
120
121                         state.tick = record.tick;
122                         switch (record.cmd) {
123                         case Altos.AO_LOG_FLIGHT:
124                                 state.ground_accel = record.a;
125                                 state.flight = record.b;
126                                 seen |= seen_flight;
127                                 break;
128                         case Altos.AO_LOG_SENSOR:
129                                 state.accel = record.a;
130                                 state.pres = record.b;
131                                 if (state.state < Altos.ao_flight_boost) {
132                                         n_pad_samples++;
133                                         ground_pres += state.pres;
134                                         state.ground_pres = (int) (ground_pres / n_pad_samples);
135                                         state.flight_pres = state.ground_pres;
136                                         ground_accel += state.accel;
137                                         state.ground_accel = (int) (ground_accel / n_pad_samples);
138                                         state.flight_accel = state.ground_accel;
139                                 } else {
140                                         state.flight_pres = (state.flight_pres * 15 + state.pres) / 16;
141                                         state.flight_accel = (state.flight_accel * 15 + state.accel) / 16;
142                                         state.flight_vel += (state.accel_plus_g - state.accel);
143                                 }
144                                 seen |= seen_sensor;
145                                 break;
146                         case Altos.AO_LOG_TEMP_VOLT:
147                                 state.temp = record.a;
148                                 state.batt = record.b;
149                                 seen |= seen_temp_volt;
150                                 break;
151                         case Altos.AO_LOG_DEPLOY:
152                                 state.drogue = record.a;
153                                 state.main = record.b;
154                                 seen |= seen_deploy;
155                                 break;
156                         case Altos.AO_LOG_STATE:
157                                 state.state = record.a;
158                                 break;
159                         case Altos.AO_LOG_GPS_TIME:
160                                 gps_tick = state.tick;
161                                 state.gps = new AltosGPS();
162                                 state.gps.hour = (record.a & 0xff);
163                                 state.gps.minute = (record.a >> 8);
164                                 state.gps.second = (record.b & 0xff);
165                                 int flags = (record.b >> 8);
166                                 state.gps.connected = (flags & Altos.AO_GPS_RUNNING) != 0;
167                                 state.gps.locked = (flags & Altos.AO_GPS_VALID) != 0;
168                                 state.gps.date_valid = (flags & Altos.AO_GPS_DATE_VALID) != 0;
169                                 state.gps.nsat = (flags & Altos.AO_GPS_NUM_SAT_MASK) >>
170                                         Altos.AO_GPS_NUM_SAT_SHIFT;
171                                 break;
172                         case Altos.AO_LOG_GPS_LAT:
173                                 int lat32 = record.a | (record.b << 16);
174                                 state.gps.lat = (double) lat32 / 1e7;
175                                 break;
176                         case Altos.AO_LOG_GPS_LON:
177                                 int lon32 = record.a | (record.b << 16);
178                                 state.gps.lon = (double) lon32 / 1e7;
179                                 break;
180                         case Altos.AO_LOG_GPS_ALT:
181                                 state.gps.alt = record.a;
182                                 break;
183                         case Altos.AO_LOG_GPS_SAT:
184                                 if (state.tick == gps_tick) {
185                                         int svid = record.a;
186                                         int c_n0 = record.b >> 8;
187                                         state.gps.add_sat(svid, c_n0);
188                                 }
189                                 break;
190                         case Altos.AO_LOG_GPS_DATE:
191                                 state.gps.year = record.a & 0xff;
192                                 state.gps.month = record.a >> 8;
193                                 state.gps.day = record.b & 0xff;
194                                 break;
195
196                         case Altos.AO_LOG_CONFIG_VERSION:
197                                 break;
198                         case Altos.AO_LOG_MAIN_DEPLOY:
199                                 break;
200                         case Altos.AO_LOG_APOGEE_DELAY:
201                                 break;
202                         case Altos.AO_LOG_RADIO_CHANNEL:
203                                 break;
204                         case Altos.AO_LOG_CALLSIGN:
205                                 state.callsign = record.data;
206                                 break;
207                         case Altos.AO_LOG_ACCEL_CAL:
208                                 state.accel_plus_g = record.a;
209                                 state.accel_minus_g = record.b;
210                                 break;
211                         case Altos.AO_LOG_RADIO_CAL:
212                                 break;
213                         case Altos.AO_LOG_MANUFACTURER:
214                                 break;
215                         case Altos.AO_LOG_PRODUCT:
216                                 break;
217                         case Altos.AO_LOG_SERIAL_NUMBER:
218                                 state.serial = record.a;
219                                 break;
220                         case Altos.AO_LOG_SOFTWARE_VERSION:
221                                 break;
222                         }
223                         record = null;
224                 }
225         }
226
227         public void write_comments(PrintStream out) {
228                 Iterator<AltosOrderedRecord>    iterator = records.iterator();
229                 out.printf("# Comments\n");
230                 while (iterator.hasNext()) {
231                         AltosOrderedRecord      record = iterator.next();
232                         switch (record.cmd) {
233                         case Altos.AO_LOG_CONFIG_VERSION:
234                                 out.printf("# Config version: %s\n", record.data);
235                                 break;
236                         case Altos.AO_LOG_MAIN_DEPLOY:
237                                 out.printf("# Main deploy: %s\n", record.a);
238                                 break;
239                         case Altos.AO_LOG_APOGEE_DELAY:
240                                 out.printf("# Apogee delay: %s\n", record.a);
241                                 break;
242                         case Altos.AO_LOG_RADIO_CHANNEL:
243                                 out.printf("# Radio channel: %s\n", record.a);
244                                 break;
245                         case Altos.AO_LOG_CALLSIGN:
246                                 out.printf("# Callsign: %s\n", record.data);
247                                 break;
248                         case Altos.AO_LOG_ACCEL_CAL:
249                                 out.printf ("# Accel cal: %d %d\n", record.a, record.b);
250                                 break;
251                         case Altos.AO_LOG_RADIO_CAL:
252                                 out.printf ("# Radio cal: %d\n", record.a);
253                                 break;
254                         case Altos.AO_LOG_MANUFACTURER:
255                                 out.printf ("# Manufacturer: %s\n", record.data);
256                                 break;
257                         case Altos.AO_LOG_PRODUCT:
258                                 out.printf ("# Product: %s\n", record.data);
259                                 break;
260                         case Altos.AO_LOG_SERIAL_NUMBER:
261                                 out.printf ("# Serial number: %d\n", record.a);
262                                 break;
263                         case Altos.AO_LOG_SOFTWARE_VERSION:
264                                 out.printf ("# Software version: %s\n", record.data);
265                                 break;
266                         }
267                 }
268         }
269
270         /*
271          * Read the whole file, dumping records into a RB tree so
272          * we can enumerate them in time order -- the eeprom data
273          * are sometimes out of order with GPS data getting timestamps
274          * matching the first packet out of the GPS unit but not
275          * written until the final GPS packet has been received.
276          */
277         public AltosEepromReader (FileInputStream input) {
278                 state = new AltosRecord();
279                 state.state = Altos.ao_flight_pad;
280                 state.accel_plus_g = 15758;
281                 state.accel_minus_g = 16294;
282                 seen = 0;
283                 records = new TreeSet<AltosOrderedRecord>();
284
285                 int index = 0;
286                 int tick = 0;
287
288                 try {
289                         for (;;) {
290                                 String line = AltosRecord.gets(input);
291                                 if (line == null)
292                                         break;
293                                 AltosOrderedRecord record = new AltosOrderedRecord(line, index++, tick);
294                                 if (record == null)
295                                         break;
296                                 tick = record.tick;
297                                 if (!saw_boost && record.cmd == Altos.AO_LOG_STATE &&
298                                     record.a >= Altos.ao_flight_boost)
299                                 {
300                                         saw_boost = true;
301                                         boost_tick = tick;
302                                 }
303                                 records.add(record);
304                         }
305                 } catch (IOException io) {
306                 } catch (ParseException pe) {
307                 }
308                 record_iterator = records.iterator();
309                 try {
310                         input.close();
311                 } catch (IOException ie) {
312                 }
313         }
314 }