altosuilib: Split battery graph enable out from other adc enables
[fw/altos] / altoslib / AltosEepromGPS.java
1 /*
2  * Copyright © 2014 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 org.altusmetrum.altoslib_4;
19
20 import java.io.*;
21 import java.util.*;
22 import java.text.*;
23
24 public class AltosEepromGPS extends AltosEeprom {
25         public static final int record_length = 32;
26
27         public static final int max_sat = 12;
28
29         public int record_length() { return record_length; }
30
31         /* AO_LOG_FLIGHT elements */
32         public int flight() { return data16(0); }
33         public int start_altitude() { return data16(2); }
34         public int start_latitude() { return data32(4); }
35         public int start_longitude() { return data32(8); }
36
37         /* AO_LOG_GPS_TIME elements */
38         public int latitude() { return data32(0); }
39         public int longitude() { return data32(4); }
40         public int altitude() { return data16(8); }
41         public int hour() { return data8(10); }
42         public int minute() { return data8(11); }
43         public int second() { return data8(12); }
44         public int flags() { return data8(13); }
45         public int year() { return data8(14); }
46         public int month() { return data8(15); }
47         public int day() { return data8(16); }
48         public int course() { return data8(17); }
49         public int ground_speed() { return data16(18); }
50         public int climb_rate() { return data16(20); }
51         public int pdop() { return data8(22); }
52         public int hdop() { return data8(23); }
53         public int vdop() { return data8(24); }
54         public int mode() { return data8(25); }
55
56         public AltosEepromGPS (AltosEepromChunk chunk, int start) throws ParseException {
57                 parse_chunk(chunk, start);
58         }
59
60         public void update_state(AltosState state) {
61                 super.update_state(state);
62
63                 AltosGPS        gps;
64
65                 /* Flush any pending GPS changes */
66                 if (state.gps_pending) {
67                         switch (cmd) {
68                         case AltosLib.AO_LOG_GPS_LAT:
69                         case AltosLib.AO_LOG_GPS_LON:
70                         case AltosLib.AO_LOG_GPS_ALT:
71                         case AltosLib.AO_LOG_GPS_SAT:
72                         case AltosLib.AO_LOG_GPS_DATE:
73                                 break;
74                         default:
75                                 state.set_temp_gps();
76                                 break;
77                         }
78                 }
79
80                 switch (cmd) {
81                 case AltosLib.AO_LOG_FLIGHT:
82                         state.set_boost_tick(tick);
83                         state.set_flight(flight());
84                         /* no place to log start lat/lon yet */
85                         break;
86                 case AltosLib.AO_LOG_GPS_TIME:
87                         state.set_tick(tick);
88                         gps = state.make_temp_gps(false);
89                         gps.lat = latitude() / 1e7;
90                         gps.lon = longitude() / 1e7;
91                         gps.alt = altitude();
92
93                         gps.hour = hour();
94                         gps.minute = minute();
95                         gps.second = second();
96
97                         int flags = flags();
98
99                         gps.connected = (flags & AltosLib.AO_GPS_RUNNING) != 0;
100                         gps.locked = (flags & AltosLib.AO_GPS_VALID) != 0;
101                         gps.nsat = (flags & AltosLib.AO_GPS_NUM_SAT_MASK) >>
102                                 AltosLib.AO_GPS_NUM_SAT_SHIFT;
103
104                         gps.year = 2000 + year();
105                         gps.month = month();
106                         gps.day = day();
107                         gps.ground_speed = ground_speed() * 1.0e-2;
108                         gps.course = course() * 2;
109                         gps.climb_rate = climb_rate() * 1.0e-2;
110                         gps.hdop = hdop();
111                         gps.vdop = vdop();
112                         break;
113                 }
114         }
115
116         public AltosEepromGPS (String line) {
117                 parse_string(line);
118         }
119
120         static public LinkedList<AltosEeprom> read(FileInputStream input) {
121                 LinkedList<AltosEeprom> tgpss = new LinkedList<AltosEeprom>();
122
123                 for (;;) {
124                         try {
125                                 String line = AltosLib.gets(input);
126                                 if (line == null)
127                                         break;
128                                 try {
129                                         AltosEepromGPS tgps = new AltosEepromGPS(line);
130                                         if (tgps.cmd != AltosLib.AO_LOG_INVALID)
131                                                 tgpss.add(tgps);
132                                 } catch (Exception e) {
133                                         System.out.printf ("exception\n");
134                                 }
135                         } catch (IOException ie) {
136                                 break;
137                         }
138                 }
139
140                 return tgpss;
141         }
142 }