altos: Support staging by going back to boost as needed
[fw/altos] / altosui / AltosEepromList.java
index 575c0bc2c3f044977468eab46b579166de1f006c..da4b1166e911352b5437576211ada271d0bc2fa6 100644 (file)
@@ -67,7 +67,7 @@ public class AltosEepromList extends ArrayList<AltosEepromLog> {
 
                        ArrayList<AltosEepromFlight> flights = new ArrayList<AltosEepromFlight>();
 
-                       if (config_data.flight_log_max != 0) {
+                       if (config_data.flight_log_max != 0 || config_data.log_format != 0) {
 
                                /* Devices with newer firmware will support the 'l'
                                 * command which will list the region of storage
@@ -113,8 +113,8 @@ public class AltosEepromList extends ArrayList<AltosEepromLog> {
                         * firmware, this will also extract the flight number.
                         */
                        for (AltosEepromFlight flight : flights) {
-                               add(new AltosEepromLog(serial_line, config_data.serial,
-                                                      flight.start, flight.end));
+                               add(new AltosEepromLog(config_data, serial_line,
+                                                      flight.flight, flight.start, flight.end));
                        }
                } finally {
                        if (remote)