Reverted package name to 'altosui' from 'AltosUI'
[fw/altos] / altosui / AltosEepromList.java
index 185fec9118a146d228367b8ff813a3ac36383f16..6a656215083796c2eaca6512a68c51b79626d06a 100644 (file)
@@ -27,6 +27,7 @@ import java.util.*;
 import java.text.*;
 import java.util.prefs.*;
 import java.util.concurrent.*;
+import org.altusmetrum.AltosLib.*;
 
 import libaltosJNI.*;
 
@@ -62,12 +63,12 @@ public class AltosEepromList extends ArrayList<AltosEepromLog> {
                        if (remote)
                                serial_line.start_remote();
                        config_data = new AltosConfigData (serial_line);
-                       if (config_data.serial == 0)
-                               throw new IOException("no serial number found");
+//                     if (config_data.serial == 0)
+//                             throw new IOException("no serial number found");
 
                        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,7 +114,7 @@ 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,
+                               add(new AltosEepromLog(config_data, serial_line,
                                                       flight.flight, flight.start, flight.end));
                        }
                } finally {