X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=altosui%2FAltosEepromList.java;h=da4b1166e911352b5437576211ada271d0bc2fa6;hb=f6db11c3c87725c809c518f5f19b07325faf9c84;hp=185fec9118a146d228367b8ff813a3ac36383f16;hpb=d41edb3384b6336f3482e61b0c9f9400a8b4f519;p=fw%2Faltos diff --git a/altosui/AltosEepromList.java b/altosui/AltosEepromList.java index 185fec91..da4b1166 100644 --- a/altosui/AltosEepromList.java +++ b/altosui/AltosEepromList.java @@ -67,7 +67,7 @@ public class AltosEepromList extends ArrayList { ArrayList flights = new ArrayList(); - 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,7 +113,7 @@ public class AltosEepromList extends ArrayList { * firmware, this will also extract the flight number. */ for (AltosEepromFlight flight : flights) { - add(new AltosEepromLog(serial_line, config_data.serial, + add(new AltosEepromLog(config_data, serial_line, flight.flight, flight.start, flight.end)); } } finally {