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