altoslib: Add new eeprom management code
[fw/altos] / altoslib / AltosEepromRecordGps.java
1 /*
2  * Copyright © 2017 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.io.*;
22 import java.util.*;
23 import java.text.*;
24
25 public class AltosEepromRecordGps extends AltosEepromRecord {
26         public static final int record_length = 32;
27
28         /* AO_LOG_FLIGHT elements */
29         public int flight() { return data16(0); }
30         public int start_altitude() { return data16(2); }
31         public int start_latitude() { return data32(4); }
32         public int start_longitude() { return data32(8); }
33
34         /* AO_LOG_GPS_TIME elements */
35         public int latitude() { return data32(0); }
36         public int longitude() { return data32(4); }
37         public int altitude_low() { return data16(8); }
38         public int hour() { return data8(10); }
39         public int minute() { return data8(11); }
40         public int second() { return data8(12); }
41         public int flags() { return data8(13); }
42         public int year() { return data8(14); }
43         public int month() { return data8(15); }
44         public int day() { return data8(16); }
45         public int course() { return data8(17); }
46         public int ground_speed() { return data16(18); }
47         public int climb_rate() { return data16(20); }
48         public int pdop() { return data8(22); }
49         public int hdop() { return data8(23); }
50         public int vdop() { return data8(24); }
51         public int mode() { return data8(25); }
52         public int altitude_high() { return data16(26); }
53
54         private int seconds() {
55                 switch (cmd()) {
56                 case AltosLib.AO_LOG_GPS_TIME:
57                         return second() + 60 * (minute() + 60 * (hour() + 24 * (day() + 31 * month())));
58                 default:
59                         return 0;
60                 }
61         }
62
63         public int compareTo(AltosEepromRecord o) {
64                 AltosEepromRecordGps og = (AltosEepromRecordGps) o;
65
66                 int     seconds_diff = seconds() - og.seconds();
67
68                 if (seconds_diff != 0)
69                         return seconds_diff;
70
71                 return start - o.start;
72         }
73
74         public void update_state(AltosState state) {
75                 super.update_state(state);
76
77                 AltosGPS        gps;
78
79                 /* Flush any pending RecordGps changes */
80                 if (state.gps_pending) {
81                         switch (cmd()) {
82                         case AltosLib.AO_LOG_GPS_LAT:
83                         case AltosLib.AO_LOG_GPS_LON:
84                         case AltosLib.AO_LOG_GPS_ALT:
85                         case AltosLib.AO_LOG_GPS_SAT:
86                         case AltosLib.AO_LOG_GPS_DATE:
87                                 break;
88                         default:
89                                 state.set_temp_gps();
90                                 break;
91                         }
92                 }
93
94                 switch (cmd()) {
95                 case AltosLib.AO_LOG_FLIGHT:
96                         if (state.flight == AltosLib.MISSING) {
97                                 state.set_boost_tick(tick());
98                                 state.set_flight(flight());
99                         }
100                         /* no place to log start lat/lon yet */
101                         break;
102                 case AltosLib.AO_LOG_GPS_TIME:
103                         gps = state.make_temp_gps(false);
104                         gps.lat = latitude() / 1e7;
105                         gps.lon = longitude() / 1e7;
106                         if (eeprom.config_data().altitude_32 == 1)
107                                 gps.alt = (altitude_low() & 0xffff) | (altitude_high() << 16);
108                         else
109                                 gps.alt = altitude_low();
110
111                         gps.hour = hour();
112                         gps.minute = minute();
113                         gps.second = second();
114
115                         int flags = flags();
116
117                         gps.connected = (flags & AltosLib.AO_GPS_RUNNING) != 0;
118                         gps.locked = (flags & AltosLib.AO_GPS_VALID) != 0;
119                         gps.nsat = (flags & AltosLib.AO_GPS_NUM_SAT_MASK) >>
120                                 AltosLib.AO_GPS_NUM_SAT_SHIFT;
121
122                         gps.year = 2000 + year();
123                         gps.month = month();
124                         gps.day = day();
125                         gps.ground_speed = ground_speed() * 1.0e-2;
126                         gps.course = course() * 2;
127                         gps.climb_rate = climb_rate() * 1.0e-2;
128                         if (eeprom.config_data().compare_version("1.4.9") >= 0) {
129                                 gps.pdop = pdop() / 10.0;
130                                 gps.hdop = hdop() / 10.0;
131                                 gps.vdop = vdop() / 10.0;
132                         } else {
133                                 gps.pdop = pdop() / 100.0;
134                                 if (gps.pdop < 0.8)
135                                         gps.pdop += 2.56;
136                                 gps.hdop = hdop() / 100.0;
137                                 if (gps.hdop < 0.8)
138                                         gps.hdop += 2.56;
139                                 gps.vdop = vdop() / 100.0;
140                                 if (gps.vdop < 0.8)
141                                         gps.vdop += 2.56;
142                         }
143                         break;
144                 }
145         }
146
147         public AltosEepromRecord next() {
148                 if (start + length + length < eeprom.data.size())
149                         return new AltosEepromRecordGps(eeprom, start + length);
150                 return null;
151         }
152
153         public AltosEepromRecordGps(AltosEepromNew eeprom, int start) {
154                 super(eeprom, start, record_length);
155         }
156
157         public AltosEepromRecordGps(AltosEepromNew eeprom) {
158                 this(eeprom, 0);
159         }
160 }