Altosui: Add flight statistics tab to graph window
[fw/altos] / altosui / AltosState.java
index 4e165f8093550ea4ea0fe74fb552d3d3073084a4..1ac816d52f842f594e9b378b003ba8a59754e907 100644 (file)
@@ -28,6 +28,7 @@ public class AltosState {
 
        long    report_time;
 
+       double  time;
        double  time_change;
        int     tick;
 
@@ -80,7 +81,6 @@ public class AltosState {
 
                ground_altitude = data.ground_altitude();
                height = data.filtered_height();
-               System.out.printf("height %g\n", height);
 
                report_time = System.currentTimeMillis();
 
@@ -131,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)