blob: 2c4b6fa5398c0042de71b6bb9f0525727c26534f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
/*
* Copyright © 2010 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
package org.altusmetrum.AltosLib;
public abstract class AltosRecord implements Comparable <AltosRecord>, Cloneable {
public static final int seen_flight = 1;
public static final int seen_sensor = 2;
public static final int seen_temp_volt = 4;
public static final int seen_deploy = 8;
public static final int seen_gps_time = 16;
public static final int seen_gps_lat = 32;
public static final int seen_gps_lon = 64;
public static final int seen_companion = 128;
public int seen;
public final static int MISSING = 0x7fffffff;
/* Every AltosRecord implementation provides these fields */
public int version;
public String callsign;
public int serial;
public int flight;
public int rssi;
public int status;
public int state;
public int tick;
public AltosGPS gps;
public boolean new_gps;
public double time; /* seconds since boost */
public int device_type;
public int config_major;
public int config_minor;
public int apogee_delay;
public int main_deploy;
public int flight_log_max;
public String firmware_version;
public AltosRecordCompanion companion;
/* Telemetry sources have these values recorded from the flight computer */
public double kalman_height;
public double kalman_speed;
public double kalman_acceleration;
/*
* Abstract methods that convert record data
* to standard units:
*
* pressure: Pa
* voltage: V
* acceleration: m/s²
* speed: m/s
* height: m
* temperature: °C
*/
abstract public double pressure();
abstract public double ground_pressure();
abstract public double acceleration();
public double altitude() {
double p = pressure();
if (p == MISSING)
return MISSING;
return AltosConvert.pressure_to_altitude(p);
}
public double ground_altitude() {
double p = ground_pressure();
if (p == MISSING)
return MISSING;
return AltosConvert.pressure_to_altitude(p);
}
public double height() {
double g = ground_altitude();
double a = altitude();
if (g == MISSING)
return MISSING;
if (a == MISSING)
return MISSING;
return a - g;
}
public double battery_voltage() { return MISSING; }
public double main_voltage() { return MISSING; }
public double drogue_voltage() { return MISSING; }
public double temperature() { return MISSING; }
public AltosIMU imu() { return null; }
public AltosMag mag() { return null; }
public String state() {
return AltosLib.state_name(state);
}
public int compareTo(AltosRecord o) {
return tick - o.tick;
}
abstract public AltosRecord clone();
public void copy(AltosRecord old) {
seen = old.seen;
version = old.version;
callsign = old.callsign;
serial = old.serial;
flight = old.flight;
rssi = old.rssi;
status = old.status;
state = old.state;
tick = old.tick;
gps = new AltosGPS(old.gps);
new_gps = old.new_gps;
companion = old.companion;
kalman_acceleration = old.kalman_acceleration;
kalman_speed = old.kalman_speed;
kalman_height = old.kalman_height;
}
public AltosRecord() {
seen = 0;
version = 0;
callsign = "N0CALL";
serial = 0;
flight = 0;
rssi = 0;
status = 0;
state = AltosLib.ao_flight_startup;
tick = 0;
gps = new AltosGPS();
new_gps = false;
companion = null;
kalman_acceleration = MISSING;
kalman_speed = MISSING;
kalman_height = MISSING;
}
}
|