altos/drivers: Use stdbool in ao_ms5607.c
[fw/altos] / altosuilib / AltosInfoTable.java
index 9e528b1fd27f6ae4295bb7bdc013a53c3a74ab0c..86917319cf04c3353166eff81fa41660924c552a 100644 (file)
  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  */
 
-package org.altusmetrum.altosuilib_12;
+package org.altusmetrum.altosuilib_13;
 
 import java.awt.*;
 import java.awt.event.*;
 import javax.swing.*;
 import javax.swing.table.*;
-import org.altusmetrum.altoslib_12.*;
+import org.altusmetrum.altoslib_13.*;
 
 public class AltosInfoTable extends JTable implements AltosFlightDisplay, HierarchyListener {
        private AltosFlightInfoTableModel model;
@@ -142,6 +142,8 @@ public class AltosInfoTable extends JTable implements AltosFlightDisplay, Hierar
                                info_add_row(0, "Device", "%s", AltosLib.product_name(cal_data.device_type));
                        else if (cal_data.product != null)
                                info_add_row(0, "Device", "%s", cal_data.product);
+                       if (state.tick() != AltosLib.MISSING)
+                               info_add_row(0, "Tick", "%6d", state.tick());
                        if (state.altitude() != AltosLib.MISSING)
                                info_add_row(0, "Altitude", "%6.0f    m", state.altitude());
                        if (cal_data.ground_altitude != AltosLib.MISSING)