altoslib: Add AltosOrient class and max_orient()
[fw/altos] / altoslib / AltosState.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 /*
19  * Track flight state from telemetry or eeprom data stream
20  */
21
22 package org.altusmetrum.altoslib_3;
23
24 public class AltosState implements Cloneable {
25
26         public static final int set_position = 1;
27         public static final int set_gps = 2;
28         public static final int set_data = 4;
29
30         public int set;
31
32         static final double ascent_filter_len = 0.5;
33         static final double descent_filter_len = 0.5;
34
35         /* derived data */
36
37         public long     received_time;
38
39         public double   time;
40         public double   prev_time;
41         public double   time_change;
42         public int      tick;
43         private int     prev_tick;
44         public int      boost_tick;
45
46         class AltosValue {
47                 private double  value;
48                 private double  prev_value;
49                 private double  max_value;
50                 private double  set_time;
51                 private double  prev_set_time;
52
53                 void set(double new_value, double time) {
54                         if (new_value != AltosLib.MISSING) {
55                                 value = new_value;
56                                 if (max_value == AltosLib.MISSING || value > max_value) {
57                                         max_value = value;
58                                 }
59                                 set_time = time;
60                         }
61                 }
62
63                 void set_filtered(double new_value, double time) {
64                         if (prev_value != AltosLib.MISSING)
65                                 new_value = (prev_value * 15.0 + new_value) / 16.0;
66                         set(new_value, time);
67                 }
68
69                 double value() {
70                         return value;
71                 }
72
73                 double max() {
74                         return max_value;
75                 }
76
77                 double prev() {
78                         return prev_value;
79                 }
80
81                 double change() {
82                         if (value != AltosLib.MISSING && prev_value != AltosLib.MISSING)
83                                 return value - prev_value;
84                         return AltosLib.MISSING;
85                 }
86
87                 double rate() {
88                         double c = change();
89                         double t = set_time - prev_set_time;
90
91                         if (c != AltosLib.MISSING && t != 0)
92                                 return c / t;
93                         return AltosLib.MISSING;
94                 }
95
96                 double integrate() {
97                         if (value == AltosLib.MISSING)
98                                 return AltosLib.MISSING;
99                         if (prev_value == AltosLib.MISSING)
100                                 return AltosLib.MISSING;
101
102                         return (value + prev_value) / 2 * (set_time - prev_set_time);
103                 }
104
105                 double time() {
106                         return set_time;
107                 }
108
109                 void set_derivative(AltosValue in) {
110                         double  n = in.rate();
111                         
112                         if (n == AltosLib.MISSING)
113                                 return;
114
115                         double  p = prev_value;
116                         double  pt = prev_set_time;
117
118                         if (p == AltosLib.MISSING) {
119                                 p = 0;
120                                 pt = in.time() - 0.01;
121                         }
122
123                         /* Clip changes to reduce noise */
124                         double  ddt = in.time() - pt;
125                         double  ddv = (n - p) / ddt;
126                                 
127                         final double max = 100000;
128
129                         /* 100gs */
130                         if (Math.abs(ddv) > max) {
131                                 if (n > p)
132                                         n = p + ddt * max;
133                                 else
134                                         n = p - ddt * max;
135                         }
136
137                         double filter_len;
138
139                         if (ascent)
140                                 filter_len = ascent_filter_len;
141                         else
142                                 filter_len = descent_filter_len;
143
144                         double f = 1/Math.exp(ddt/ filter_len);
145                         n = p * f + n * (1-f);
146
147                         set(n, in.time());
148                 }
149
150                 void set_integral(AltosValue in) {
151                         double  change = in.integrate();
152
153                         if (change != AltosLib.MISSING) {
154                                 double  prev = prev_value;
155                                 if (prev == AltosLib.MISSING)
156                                         prev = 0;
157                                 set(prev + change, in.time());
158                         }
159                 }
160
161                 void copy(AltosValue old) {
162                         value = old.value;
163                         set_time = old.set_time;
164                         prev_value = old.value;
165                         prev_set_time = old.set_time;
166                         max_value = old.max_value;
167                 }
168
169                 void finish_update() {
170                         prev_value = value;
171                         prev_set_time = set_time;
172                 }
173
174                 AltosValue() {
175                         value = AltosLib.MISSING;
176                         prev_value = AltosLib.MISSING;
177                         max_value = AltosLib.MISSING;
178                 }
179         }
180
181         class AltosCValue {
182                 AltosValue      measured;
183                 AltosValue      computed;
184
185                 double value() {
186                         double v = measured.value();
187                         if (v != AltosLib.MISSING)
188                                 return v;
189                         return computed.value();
190                 }
191
192                 boolean is_measured() {
193                         return measured.value() != AltosLib.MISSING;
194                 }
195
196                 double max() {
197                         double m = measured.max();
198
199                         if (m != AltosLib.MISSING)
200                                 return m;
201                         return computed.max();
202                 }
203
204                 double prev_value() {
205                         if (measured.value != AltosLib.MISSING && measured.prev_value != AltosLib.MISSING)
206                                 return measured.prev_value;
207                         return computed.prev_value;
208                 }
209
210                 AltosValue altos_value() {
211                         if (measured.value() != AltosLib.MISSING)
212                                 return measured;
213                         return computed;
214                 }
215
216                 double change() {
217                         double c = measured.change();
218                         if (c == AltosLib.MISSING)
219                                 c = computed.change();
220                         return c;
221                 }
222
223                 double rate() {
224                         double r = measured.rate();
225                         if (r == AltosLib.MISSING)
226                                 r = computed.rate();
227                         return r;
228                 }
229
230                 void set_measured(double new_value, double time) {
231                         measured.set(new_value, time);
232                 }
233
234                 void set_computed(double new_value, double time) {
235                         computed.set(new_value, time);
236                 }
237
238                 void set_derivative(AltosValue in) {
239                         computed.set_derivative(in);
240                 }
241
242                 void set_derivative(AltosCValue in) {
243                         set_derivative(in.altos_value());
244                 }
245
246                 void set_integral(AltosValue in) {
247                         computed.set_integral(in);
248                 }
249                 
250                 void set_integral(AltosCValue in) {
251                         set_integral(in.altos_value());
252                 }
253                 
254                 void copy(AltosCValue old) {
255                         measured.copy(old.measured);
256                         computed.copy(old.computed);
257                 }
258
259                 void finish_update() {
260                         measured.finish_update();
261                         computed.finish_update();
262                 }
263
264                 AltosCValue() {
265                         measured = new AltosValue();
266                         computed = new AltosValue();
267                 }
268         }
269
270         public int      state;
271         public int      flight;
272         public int      serial;
273         public int      receiver_serial;
274         public boolean  landed;
275         public boolean  ascent; /* going up? */
276         public boolean  boost;  /* under power */
277         public int      rssi;
278         public int      status;
279         public int      device_type;
280         public int      config_major;
281         public int      config_minor;
282         public int      apogee_delay;
283         public int      main_deploy;
284         public int      flight_log_max;
285
286         private double pressure_to_altitude(double p) {
287                 if (p == AltosLib.MISSING)
288                         return AltosLib.MISSING;
289                 return AltosConvert.pressure_to_altitude(p);
290         }
291
292         private AltosCValue ground_altitude;
293
294         public double ground_altitude() {
295                 return ground_altitude.value();
296         }
297
298         public void set_ground_altitude(double a) {
299                 ground_altitude.set_measured(a, time);
300         }
301
302         class AltosGroundPressure extends AltosCValue {
303                 void set_filtered(double p, double time) {
304                         computed.set_filtered(p, time);
305                         if (!is_measured())
306                                 ground_altitude.set_computed(pressure_to_altitude(computed.value()), time);
307                 }
308
309                 void set_measured(double p, double time) {
310                         super.set_measured(p, time);
311                         ground_altitude.set_computed(pressure_to_altitude(p), time);
312                 }
313         }
314
315         private AltosGroundPressure ground_pressure;
316                 
317         public double ground_pressure() {
318                 return ground_pressure.value();
319         }
320
321         public void set_ground_pressure (double pressure) {
322                 ground_pressure.set_measured(pressure, time);
323         }
324
325         class AltosAltitude extends AltosCValue {
326
327                 private void set_speed(AltosValue v) {
328                         if (!acceleration.is_measured() || !ascent)
329                                 speed.set_derivative(this);
330                 }
331
332                 void set_computed(double a, double time) {
333                         super.set_computed(a,time);
334                         set_speed(computed);
335                         set |= set_position;
336                 }
337
338                 void set_measured(double a, double time) {
339                         super.set_measured(a,time);
340                         set_speed(measured);
341                         set |= set_position;
342                 }
343         }
344
345         private AltosAltitude   altitude;
346
347         public double altitude() {
348                 double a = altitude.value();
349                 if (a != AltosLib.MISSING)
350                         return a;
351                 if (gps != null)
352                         return gps.alt;
353                 return AltosLib.MISSING;
354         }
355
356         public double max_altitude() {
357                 double a = altitude.max();
358                 if (a != AltosLib.MISSING)
359                         return a;
360                 return AltosLib.MISSING;
361         }
362
363         public void set_altitude(double new_altitude) {
364                 altitude.set_measured(new_altitude, time);
365         }
366
367         class AltosPressure extends AltosValue {
368                 void set(double p, double time) {
369                         super.set(p, time);
370                         if (state == AltosLib.ao_flight_pad)
371                                 ground_pressure.set_filtered(p, time);
372                         double a = pressure_to_altitude(p);
373                         altitude.set_computed(a, time);
374                 }
375         }
376
377         private AltosPressure   pressure;
378
379         public double pressure() {
380                 return pressure.value();
381         }
382
383         public void set_pressure(double p) {
384                 pressure.set(p, time);
385         }
386
387         public double height() {
388                 double k = kalman_height.value();
389                 if (k != AltosLib.MISSING)
390                         return k;
391
392                 double a = altitude();
393                 double g = ground_altitude();
394                 if (a != AltosLib.MISSING && g != AltosLib.MISSING)
395                         return a - g;
396                 return AltosLib.MISSING;
397         }
398
399         public double max_height() {
400                 double  k = kalman_height.max();
401                 if (k != AltosLib.MISSING)
402                         return k;
403
404                 double a = altitude.max();
405                 double g = ground_altitude();
406                 if (a != AltosLib.MISSING && g != AltosLib.MISSING)
407                         return a - g;
408                 return AltosLib.MISSING;
409         }
410
411         class AltosSpeed extends AltosCValue {
412                 
413                 void set_accel() {
414                         acceleration.set_derivative(this);
415                 }
416
417                 void set_derivative(AltosCValue in) {
418                         super.set_derivative(in);
419                         set_accel();
420                 }
421
422                 void set_computed(double new_value, double time) {
423                         super.set_computed(new_value, time);
424                         set_accel();
425                 }
426
427                 void set_measured(double new_value, double time) {
428                         super.set_measured(new_value, time);
429                         set_accel();
430                 }
431         }
432
433         private AltosSpeed speed;
434
435         public double speed() {
436                 double v = kalman_speed.value();
437                 if (v != AltosLib.MISSING)
438                         return v;
439                 return speed.value();
440         }
441
442         public double max_speed() {
443                 double v = kalman_speed.max();
444                 if (v != AltosLib.MISSING)
445                         return v;
446                 return speed.max();
447         }
448
449         class AltosAccel extends AltosCValue {
450                 void set_measured(double a, double time) {
451                         super.set_measured(a, time);
452                         if (ascent)
453                                 speed.set_integral(this.measured);
454                 }
455         }
456
457         AltosAccel acceleration;
458
459         public double acceleration() {
460                 return acceleration.value();
461         }
462
463         public double max_acceleration() {
464                 return acceleration.max();
465         }
466
467         public AltosValue       orient;
468
469         public void set_orient(double new_orient) {
470                 orient.set(new_orient, time);
471         }
472
473         public double orient() {
474                 return orient.value();
475         }
476
477         public double max_orient() {
478                 return orient.max();
479         }
480
481         public AltosValue       kalman_height, kalman_speed, kalman_acceleration;
482
483         public void set_kalman(double height, double speed, double acceleration) {
484                 kalman_height.set(height, time);
485                 kalman_speed.set(speed, time);
486                 kalman_acceleration.set(acceleration, time);
487         }
488
489         public double   battery_voltage;
490         public double   pyro_voltage;
491         public double   temperature;
492         public double   apogee_voltage;
493         public double   main_voltage;
494
495         public double   ignitor_voltage[];
496
497         public AltosGPS gps;
498         public AltosGPS temp_gps;
499         public int temp_gps_sat_tick;
500         public boolean  gps_pending;
501         public int gps_sequence;
502
503         public AltosIMU imu;
504         public AltosMag mag;
505
506         public static final int MIN_PAD_SAMPLES = 10;
507
508         public int      npad;
509         public int      gps_waiting;
510         public boolean  gps_ready;
511
512         public int      ngps;
513
514         public AltosGreatCircle from_pad;
515         public double   elevation;      /* from pad */
516         public double   range;          /* total distance */
517
518         public double   gps_height;
519
520         public double pad_lat, pad_lon, pad_alt;
521
522         public int      speak_tick;
523         public double   speak_altitude;
524
525         public String   callsign;
526         public String   firmware_version;
527
528         public double   accel_plus_g;
529         public double   accel_minus_g;
530         public double   accel;
531         public double   ground_accel;
532         public double   ground_accel_avg;
533
534         public int      log_format;
535
536         public AltosMs5607      baro;
537
538         public AltosCompanion   companion;
539
540         public void set_npad(int npad) {
541                 this.npad = npad;
542                 gps_waiting = MIN_PAD_SAMPLES - npad;
543                 if (this.gps_waiting < 0)
544                         gps_waiting = 0;
545                 gps_ready = gps_waiting == 0;
546         }
547
548         public void init() {
549                 set = 0;
550
551                 received_time = System.currentTimeMillis();
552                 time = AltosLib.MISSING;
553                 time_change = AltosLib.MISSING;
554                 prev_time = AltosLib.MISSING;
555                 tick = AltosLib.MISSING;
556                 prev_tick = AltosLib.MISSING;
557                 boost_tick = AltosLib.MISSING;
558                 state = AltosLib.ao_flight_invalid;
559                 flight = AltosLib.MISSING;
560                 landed = false;
561                 boost = false;
562                 rssi = AltosLib.MISSING;
563                 status = 0;
564                 device_type = AltosLib.MISSING;
565                 config_major = AltosLib.MISSING;
566                 config_minor = AltosLib.MISSING;
567                 apogee_delay = AltosLib.MISSING;
568                 main_deploy = AltosLib.MISSING;
569                 flight_log_max = AltosLib.MISSING;
570
571                 ground_altitude = new AltosCValue();
572                 ground_pressure = new AltosGroundPressure();
573                 altitude = new AltosAltitude();
574                 pressure = new AltosPressure();
575                 speed = new AltosSpeed();
576                 acceleration = new AltosAccel();
577                 orient = new AltosValue();
578
579                 temperature = AltosLib.MISSING;
580                 battery_voltage = AltosLib.MISSING;
581                 pyro_voltage = AltosLib.MISSING;
582                 apogee_voltage = AltosLib.MISSING;
583                 main_voltage = AltosLib.MISSING;
584                 ignitor_voltage = null;
585
586                 kalman_height = new AltosValue();
587                 kalman_speed = new AltosValue();
588                 kalman_acceleration = new AltosValue();
589
590                 gps = null;
591                 temp_gps = null;
592                 temp_gps_sat_tick = 0;
593                 gps_sequence = 0;
594                 gps_pending = false;
595
596                 imu = null;
597                 mag = null;
598
599                 set_npad(0);
600                 ngps = 0;
601
602                 from_pad = null;
603                 elevation = AltosLib.MISSING;
604                 range = AltosLib.MISSING;
605                 gps_height = AltosLib.MISSING;
606
607                 pad_lat = AltosLib.MISSING;
608                 pad_lon = AltosLib.MISSING;
609                 pad_alt = AltosLib.MISSING;
610
611                 speak_tick = AltosLib.MISSING;
612                 speak_altitude = AltosLib.MISSING;
613
614                 callsign = null;
615
616                 accel_plus_g = AltosLib.MISSING;
617                 accel_minus_g = AltosLib.MISSING;
618                 accel = AltosLib.MISSING;
619
620                 ground_accel = AltosLib.MISSING;
621                 ground_accel_avg = AltosLib.MISSING;
622
623                 log_format = AltosLib.MISSING;
624                 serial = AltosLib.MISSING;
625                 receiver_serial = AltosLib.MISSING;
626
627                 baro = null;
628                 companion = null;
629         }
630
631         void finish_update() {
632                 prev_tick = tick;
633
634                 ground_altitude.finish_update();
635                 altitude.finish_update();
636                 pressure.finish_update();
637                 speed.finish_update();
638                 acceleration.finish_update();
639                 orient.finish_update();
640
641                 kalman_height.finish_update();
642                 kalman_speed.finish_update();
643                 kalman_acceleration.finish_update();
644         }
645
646         void copy(AltosState old) {
647
648                 if (old == null) {
649                         init();
650                         return;
651                 }
652
653                 received_time = old.received_time;
654                 time = old.time;
655                 time_change = old.time_change;
656                 prev_time = old.time;
657                 
658                 tick = old.tick;
659                 prev_tick = old.tick;
660                 boost_tick = old.boost_tick;
661
662                 state = old.state;
663                 flight = old.flight;
664                 landed = old.landed;
665                 ascent = old.ascent;
666                 boost = old.boost;
667                 rssi = old.rssi;
668                 status = old.status;
669                 device_type = old.device_type;
670                 config_major = old.config_major;
671                 config_minor = old.config_minor;
672                 apogee_delay = old.apogee_delay;
673                 main_deploy = old.main_deploy;
674                 flight_log_max = old.flight_log_max;
675                 
676                 set = 0;
677
678                 ground_pressure.copy(old.ground_pressure);
679                 ground_altitude.copy(old.ground_altitude);
680                 altitude.copy(old.altitude);
681                 pressure.copy(old.pressure);
682                 speed.copy(old.speed);
683                 acceleration.copy(old.acceleration);
684                 orient.copy(old.orient);
685
686                 battery_voltage = old.battery_voltage;
687                 pyro_voltage = old.pyro_voltage;
688                 temperature = old.temperature;
689                 apogee_voltage = old.apogee_voltage;
690                 main_voltage = old.main_voltage;
691                 ignitor_voltage = old.ignitor_voltage;
692
693                 kalman_height.copy(old.kalman_height);
694                 kalman_speed.copy(old.kalman_speed);
695                 kalman_acceleration.copy(old.kalman_acceleration);
696
697                 if (old.gps != null)
698                         gps = old.gps.clone();
699                 else
700                         gps = null;
701                 if (old.temp_gps != null)
702                         temp_gps = old.temp_gps.clone();
703                 else
704                         temp_gps = null;
705                 temp_gps_sat_tick = old.temp_gps_sat_tick;
706                 gps_sequence = old.gps_sequence;
707                 gps_pending = old.gps_pending;
708
709                 if (old.imu != null)
710                         imu = old.imu.clone();
711                 else
712                         imu = null;
713
714                 if (old.mag != null)
715                         mag = old.mag.clone();
716                 else
717                         mag = null;
718
719                 npad = old.npad;
720                 gps_waiting = old.gps_waiting;
721                 gps_ready = old.gps_ready;
722                 ngps = old.ngps;
723
724                 if (old.from_pad != null)
725                         from_pad = old.from_pad.clone();
726                 else
727                         from_pad = null;
728
729                 elevation = old.elevation;
730                 range = old.range;
731
732                 gps_height = old.gps_height;
733                 pad_lat = old.pad_lat;
734                 pad_lon = old.pad_lon;
735                 pad_alt = old.pad_alt;
736
737                 speak_tick = old.speak_tick;
738                 speak_altitude = old.speak_altitude;
739
740                 callsign = old.callsign;
741
742                 accel_plus_g = old.accel_plus_g;
743                 accel_minus_g = old.accel_minus_g;
744                 accel = old.accel;
745                 ground_accel = old.ground_accel;
746                 ground_accel_avg = old.ground_accel_avg;
747
748                 log_format = old.log_format;
749                 serial = old.serial;
750                 receiver_serial = old.receiver_serial;
751
752                 baro = old.baro;
753                 companion = old.companion;
754         }
755         
756         void update_time() {
757         }
758
759         void update_gps() {
760                 elevation = 0;
761                 range = -1;
762                 gps_height = 0;
763
764                 if (gps == null)
765                         return;
766
767                 if (gps.locked && gps.nsat >= 4) {
768                         /* Track consecutive 'good' gps reports, waiting for 10 of them */
769                         if (state == AltosLib.ao_flight_pad) {
770                                 set_npad(npad+1);
771                                 if (pad_lat != AltosLib.MISSING) {
772                                         pad_lat = (pad_lat * 31 + gps.lat) / 32;
773                                         pad_lon = (pad_lon * 31 + gps.lon) / 32;
774                                         pad_alt = (pad_alt * 31 + gps.alt) / 32;
775                                 }
776                         }
777                         if (pad_lat == AltosLib.MISSING) {
778                                 pad_lat = gps.lat;
779                                 pad_lon = gps.lon;
780                                 pad_alt = gps.alt;
781                         }
782                 }
783                 if (gps.lat != 0 && gps.lon != 0 &&
784                     pad_lat != AltosLib.MISSING &&
785                     pad_lon != AltosLib.MISSING)
786                 {
787                         double h = height();
788
789                         if (h == AltosLib.MISSING)
790                                 h = 0;
791                         from_pad = new AltosGreatCircle(pad_lat, pad_lon, 0, gps.lat, gps.lon, h);
792                         elevation = from_pad.elevation;
793                         range = from_pad.range;
794                         gps_height = gps.alt - pad_alt;
795                 }
796         }
797
798         public void set_tick(int new_tick) {
799                 if (new_tick != AltosLib.MISSING) {
800                         if (prev_tick != AltosLib.MISSING) {
801                                 while (new_tick < prev_tick - 1000) {
802                                         new_tick += 65536;
803                                 }
804                         }
805                         tick = new_tick;
806                         time = tick / 100.0;
807                         time_change = time - prev_time;
808                 }
809         }
810
811         public void set_boost_tick(int boost_tick) {
812                 if (boost_tick != AltosLib.MISSING)
813                         this.boost_tick = boost_tick;
814         }
815
816         public String state_name() {
817                 return AltosLib.state_name(state);
818         }
819
820         public void set_state(int state) {
821                 if (state != AltosLib.ao_flight_invalid) {
822                         this.state = state;
823                         ascent = (AltosLib.ao_flight_boost <= state &&
824                                   state <= AltosLib.ao_flight_coast);
825                         boost = (AltosLib.ao_flight_boost == state);
826                 }
827
828         }
829
830         public void set_device_type(int device_type) {
831                 this.device_type = device_type;
832         }
833
834         public void set_config(int major, int minor, int apogee_delay, int main_deploy, int flight_log_max) {
835                 config_major = major;
836                 config_minor = minor;
837                 this.apogee_delay = apogee_delay;
838                 this.main_deploy = main_deploy;
839                 this.flight_log_max = flight_log_max;
840         }
841
842         public void set_callsign(String callsign) {
843                 this.callsign = callsign;
844         }
845
846         public void set_firmware_version(String version) {
847                 firmware_version = version;
848         }
849
850         public void set_flight(int flight) {
851
852                 /* When the flight changes, reset the state */
853                 if (flight != AltosLib.MISSING && flight != 0) {
854                         if (this.flight != AltosLib.MISSING &&
855                             this.flight != flight) {
856                                 int bt = boost_tick;
857                                 init();
858                                 boost_tick = bt;
859                         }
860                         this.flight = flight;
861                 }
862         }
863
864         public void set_serial(int serial) {
865                 /* When the serial changes, reset the state */
866                 if (serial != AltosLib.MISSING) {
867                         if (this.serial != AltosLib.MISSING &&
868                             this.serial != serial) {
869                                 int bt = boost_tick;
870                                 init();
871                                 boost_tick = bt;
872                         }
873                         this.serial = serial;
874                 }
875         }
876
877         public void set_receiver_serial(int serial) {
878                 if (serial != AltosLib.MISSING)
879                         receiver_serial = serial;
880         }
881
882         public int rssi() {
883                 if (rssi == AltosLib.MISSING)
884                         return 0;
885                 return rssi;
886         }
887
888         public void set_rssi(int rssi, int status) {
889                 if (rssi != AltosLib.MISSING) {
890                         this.rssi = rssi;
891                         this.status = status;
892                 }
893         }
894
895         public void set_received_time(long ms) {
896                 received_time = ms;
897         }
898
899         public void set_gps(AltosGPS gps, int sequence) {
900                 if (gps != null) {
901                         this.gps = gps.clone();
902                         gps_sequence = sequence;
903                         update_gps();
904                         set |= set_gps;
905                 }
906         }
907
908         public void set_imu(AltosIMU imu) {
909                 if (imu != null)
910                         imu = imu.clone();
911                 this.imu = imu;
912         }
913
914         public void set_mag(AltosMag mag) {
915                 this.mag = mag.clone();
916         }
917
918         public AltosMs5607 make_baro() {
919                 if (baro == null)
920                         baro = new AltosMs5607();
921                 return baro;
922         }
923
924         public void set_ms5607(AltosMs5607 ms5607) {
925                 baro = ms5607;
926
927                 if (baro != null) {
928                         set_pressure(baro.pa);
929                         set_temperature(baro.cc / 100.0);
930                 }
931         }
932
933         public void set_ms5607(int pres, int temp) {
934                 if (baro != null) {
935                         baro.set(pres, temp);
936
937                         set_pressure(baro.pa);
938                         set_temperature(baro.cc / 100.0);
939                 }
940         }
941
942         public void make_companion (int nchannels) {
943                 if (companion == null)
944                         companion = new AltosCompanion(nchannels);
945         }
946
947         public void set_companion(AltosCompanion companion) {
948                 this.companion = companion;
949         }
950
951         void update_accel() {
952                 double  ground = ground_accel;
953
954                 if (ground == AltosLib.MISSING)
955                         ground = ground_accel_avg;
956                 if (accel == AltosLib.MISSING)
957                         return;
958                 if (ground == AltosLib.MISSING)
959                         return;
960                 if (accel_plus_g == AltosLib.MISSING)
961                         return;
962                 if (accel_minus_g == AltosLib.MISSING)
963                         return;
964
965                 double counts_per_g = (accel_minus_g - accel_plus_g) / 2.0;
966                 double counts_per_mss = counts_per_g / 9.80665;
967                 acceleration.set_measured((ground - accel) / counts_per_mss, time);
968         }
969
970         public void set_accel_g(double accel_plus_g, double accel_minus_g) {
971                 if (accel_plus_g != AltosLib.MISSING) {
972                         this.accel_plus_g = accel_plus_g;
973                         this.accel_minus_g = accel_minus_g;
974                         update_accel();
975                 }
976         }
977
978         public void set_ground_accel(double ground_accel) {
979                 if (ground_accel != AltosLib.MISSING) {
980                         this.ground_accel = ground_accel;
981                         update_accel();
982                 }
983         }
984
985         public void set_accel(double accel) {
986                 if (accel != AltosLib.MISSING) {
987                         this.accel = accel;
988                         if (state == AltosLib.ao_flight_pad) {
989                                 if (ground_accel_avg == AltosLib.MISSING)
990                                         ground_accel_avg = accel;
991                                 else
992                                         ground_accel_avg = (ground_accel_avg * 7 + accel) / 8;
993                         }
994                 }
995                 update_accel();
996         }
997
998         public void set_temperature(double temperature) {
999                 if (temperature != AltosLib.MISSING) {
1000                         this.temperature = temperature;
1001                         set |= set_data;
1002                 }
1003         }
1004
1005         public void set_battery_voltage(double battery_voltage) {
1006                 if (battery_voltage != AltosLib.MISSING) {
1007                         this.battery_voltage = battery_voltage;
1008                         set |= set_data;
1009                 }
1010         }
1011
1012         public void set_pyro_voltage(double pyro_voltage) {
1013                 if (pyro_voltage != AltosLib.MISSING) {
1014                         this.pyro_voltage = pyro_voltage;
1015                         set |= set_data;
1016                 }
1017         }
1018
1019         public void set_apogee_voltage(double apogee_voltage) {
1020                 if (apogee_voltage != AltosLib.MISSING) {
1021                         this.apogee_voltage = apogee_voltage;
1022                         set |= set_data;
1023                 }
1024         }
1025
1026         public void set_main_voltage(double main_voltage) {
1027                 if (main_voltage != AltosLib.MISSING) {
1028                         this.main_voltage = main_voltage;
1029                         set |= set_data;
1030                 }
1031         }
1032
1033         public void set_ignitor_voltage(double[] voltage) {
1034                 this.ignitor_voltage = voltage;
1035         }
1036
1037         public double time_since_boost() {
1038                 if (tick == AltosLib.MISSING)
1039                         return 0.0;
1040
1041                 if (boost_tick == AltosLib.MISSING)
1042                         return tick / 100.0;
1043                 return (tick - boost_tick) / 100.0;
1044         }
1045
1046         public boolean valid() {
1047                 return tick != AltosLib.MISSING && serial != AltosLib.MISSING;
1048         }
1049
1050         public AltosGPS make_temp_gps(boolean sats) {
1051                 if (temp_gps == null) {
1052                         temp_gps = new AltosGPS(gps);
1053                 }
1054                 gps_pending = true;
1055                 if (sats) {
1056                         if (tick != temp_gps_sat_tick)
1057                                 temp_gps.cc_gps_sat = null;
1058                         temp_gps_sat_tick = tick;
1059                 }
1060                 return temp_gps;
1061         }
1062
1063         public void set_temp_gps() {
1064                 set_gps(temp_gps, gps_sequence + 1);
1065                 gps_pending = false;
1066                 temp_gps = null;
1067         }
1068
1069         public AltosState clone() {
1070                 AltosState s = new AltosState();
1071                 s.copy(this);
1072                 return s;
1073         }
1074
1075         public AltosState () {
1076                 init();
1077         }
1078 }