Altosui: Add flight statistics tab to graph window
[fw/altos] / altosui / AltosState.java
index 0ff2479e6334d7295a3b7eeebe52df378bc18655..1ac816d52f842f594e9b378b003ba8a59754e907 100644 (file)
@@ -28,6 +28,7 @@ public class AltosState {
 
        long    report_time;
 
+       double  time;
        double  time_change;
        int     tick;
 
@@ -130,7 +131,9 @@ public class AltosState {
                        time_change = 0;
                }
 
-               if (state == Altos.ao_flight_pad) {
+               time = tick / 100.0;
+
+               if (state == Altos.ao_flight_pad || state == Altos.ao_flight_idle) {
 
                        /* Track consecutive 'good' gps reports, waiting for 10 of them */
                        if (data.gps != null && data.gps.locked && data.gps.nsat >= 4)