lose the manual igniter firing UI bits
[fw/altos] / teststand / TestStand.java
index eb0b434da3332fd3c76d829c7304ca5fd9edde34..97f33c61183ba6df5cdfd86fa0f43eae823bf7df 100644 (file)
@@ -155,7 +155,7 @@ public class TestStand extends AltosUIFrame implements AltosEepromGrapher {
                                        }
                                });
                b.setToolTipText("Convert flight data for a spreadsheet or GoogleEarth");
-               b = addButton(0, 1, "Configure Altimeter");
+               b = addButton(0, 1, "Configure TeleFire");
                b.addActionListener(new ActionListener() {
                                        public void actionPerformed(ActionEvent e) {
                                                ConfigureTeleMetrum();
@@ -185,13 +185,6 @@ public class TestStand extends AltosUIFrame implements AltosEepromGrapher {
                        });
                b.setToolTipText("Replace the firmware in any AltusMetrum product");
 
-               b = addButton(4, 1, "Fire Igniter");
-               b.addActionListener(new ActionListener() {
-                               public void actionPerformed(ActionEvent e) {
-                                       FireIgniter();
-                               }
-                       });
-               b.setToolTipText("Remote control of igniters for deployment testing");
                b = addButton(0, 2, "Scan Channels");
                b.addActionListener(new ActionListener() {
                                public void actionPerformed(ActionEvent e) {
@@ -199,20 +192,6 @@ public class TestStand extends AltosUIFrame implements AltosEepromGrapher {
                                }
                        });
                b.setToolTipText("Find what channel an altimeter is sending telemetry on");
-               b = addButton(1, 2, "Load Maps");
-               b.addActionListener(new ActionListener() {
-                               public void actionPerformed(ActionEvent e) {
-                                       LoadMaps();
-                               }
-                       });
-               b.setToolTipText("Download satellite images for off-line flight monitoring");
-
-//             b = addButton(3, 2, "Launch Controller");
-//             b.addActionListener(new ActionListener() {
-//                             public void actionPerformed(ActionEvent e) {
-//                                     LaunchController();
-//                             }
-//                     });
 
                b = addButton(4, 2, "Quit");
                b.addActionListener(new ActionListener() {
@@ -273,18 +252,10 @@ public class TestStand extends AltosUIFrame implements AltosEepromGrapher {
                AltosFlashUI.show(TestStand.this);
        }
 
-       void FireIgniter() {
-               new AltosIgniteUI(TestStand.this);
-       }
-
        void ScanChannels() {
                new AltosScanUI(TestStand.this, true);
        }
 
-       void LoadMaps() {
-               new AltosUIMapPreload(TestStand.this);
-       }
-
        void LaunchController() {
                new AltosLaunchUI(TestStand.this);
        }