altos: Add floating point math functions from newlib
[fw/altos] / altoslib / AltosTelemetryLocation.java
1 /*
2  * Copyright © 2011 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_2;
19
20
21 public class AltosTelemetryLocation extends AltosTelemetryStandard {
22         int     flags;
23         int     altitude;
24         int     latitude;
25         int     longitude;
26         int     year;
27         int     month;
28         int     day;
29         int     hour;
30         int     minute;
31         int     second;
32         int     pdop;
33         int     hdop;
34         int     vdop;
35         int     mode;
36         int     ground_speed;
37         int     climb_rate;
38         int     course;
39
40         public AltosTelemetryLocation(int[] bytes) {
41                 super(bytes);
42
43                 flags          = uint8(5);
44                 altitude       = int16(6);
45                 latitude       = uint32(8);
46                 longitude      = uint32(12);
47                 year           = uint8(16);
48                 month          = uint8(17);
49                 day            = uint8(18);
50                 hour           = uint8(19);
51                 minute         = uint8(20);
52                 second         = uint8(21);
53                 pdop           = uint8(22);
54                 hdop           = uint8(23);
55                 vdop           = uint8(24);
56                 mode           = uint8(25);
57                 ground_speed   = uint16(26);
58                 climb_rate     = int16(28);
59                 course         = uint8(30);
60         }
61
62         public void update_state(AltosState state) {
63                 super.update_state(state);
64                 AltosGPS        gps = state.make_temp_gps(false);
65
66                 gps.nsat = flags & 0xf;
67                 gps.locked = (flags & (1 << 4)) != 0;
68                 gps.connected = (flags & (1 << 5)) != 0;
69
70                 if (gps.locked) {
71                         gps.lat = latitude * 1.0e-7;
72                         gps.lon = longitude * 1.0e-7;
73                         gps.alt = altitude;
74                         gps.year = 2000 + year;
75                         gps.month = month;
76                         gps.day = day;
77                         gps.hour = hour;
78                         gps.minute = minute;
79                         gps.second = second;
80                         gps.ground_speed = ground_speed * 1.0e-2;
81                         gps.course = course * 2;
82                         gps.climb_rate = climb_rate * 1.0e-2;
83                         gps.hdop = hdop;
84                         gps.vdop = vdop;
85                 }
86                 state.set_temp_gps();
87         }
88 }