X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=altosui%2FAltosEepromList.java;h=f9bd2748a79ca539ac5cc248a2bd486f663dcefc;hp=575c0bc2c3f044977468eab46b579166de1f006c;hb=19243ecc9b5bbdcc069ae24acf1ca807322c84d8;hpb=dea80af81b388cc3d7073444919f4e98b12fa730 diff --git a/altosui/AltosEepromList.java b/altosui/AltosEepromList.java index 575c0bc2..f9bd2748 100644 --- a/altosui/AltosEepromList.java +++ b/altosui/AltosEepromList.java @@ -17,18 +17,11 @@ package altosui; -import java.awt.*; -import java.awt.event.*; -import javax.swing.*; -import javax.swing.filechooser.FileNameExtensionFilter; -import javax.swing.table.*; import java.io.*; import java.util.*; import java.text.*; -import java.util.prefs.*; import java.util.concurrent.*; - -import libaltosJNI.*; +import org.altusmetrum.AltosLib.*; /* * Temporary structure to hold the list of stored flights; @@ -62,12 +55,12 @@ public class AltosEepromList extends ArrayList { 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 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,8 +106,8 @@ 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, - flight.start, flight.end)); + add(new AltosEepromLog(config_data, serial_line, + flight.flight, flight.start, flight.end)); } } finally { if (remote)