altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / altoslib / AltosEepromList.java
index 1abc638b8290f681a88991cf29e2a69f1ace16f4..0d15fa5a9e32a2ef22fb03444d4eecb6ef65728a 100644 (file)
@@ -39,6 +39,12 @@ class AltosEepromFlight {
                start = in_start;
                end = in_end;
        }
+
+       public AltosEepromFlight() {
+               flight = 0;
+               start = 0;
+               end = 0;
+       }
 }
 
 /*
@@ -55,59 +61,17 @@ public class AltosEepromList extends ArrayList<AltosEepromLog> {
                        if (remote)
                                link.start_remote();
                        config_data = new AltosConfigData (link);
-//                     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 || config_data.log_format != 0) {
-
-                               /* Devices with newer firmware will support the 'l'
-                                * command which will list the region of storage
-                                * occupied by each available flight
-                                */
-                               link.printf("l\n");
-                               for (;;) {
-                                       String line = link.get_reply(5000);
-                                       if (line == null)
-                                               throw new TimeoutException();
-                                       if (line.contains("done"))
-                                               break;
-                                       if (line.contains("Syntax"))
-                                               continue;
-                                       String[] tokens = line.split("\\s+");
-                                       if (tokens.length < 6)
-                                               break;
-
-                                       int     flight = -1, start = -1, end = -1;
-                                       try {
-                                               if (tokens[0].equals("flight"))
-                                                       flight = AltosParse.parse_int(tokens[1]);
-                                               if (tokens[2].equals("start"))
-                                                       start = AltosParse.parse_hex(tokens[3]);
-                                               if (tokens[4].equals("end"))
-                                                       end = AltosParse.parse_hex(tokens[5]);
-                                               if (flight != 0 && start >= 0 && end > 0)
-                                                       flights.add(new AltosEepromFlight(flight, start, end));
-                                       } catch (ParseException pe) { System.out.printf("Parse error %s\n", pe.toString()); }
-                               }
-                       } else {
-
-                               /* Older devices will hold only a single
-                                * flight. This also assumes that any older
-                                * device will have a 1MB flash device
-                                */
-                               flights.add(new AltosEepromFlight(0, 0, 0xfff));
-                       }
 
                        /* With the list of flights collected, collect more complete
                         * information on them by reading the first block or two of
                         * data. This will add GPS coordinates and a date. For older
                         * firmware, this will also extract the flight number.
                         */
-                       for (AltosEepromFlight flight : flights) {
-                               add(new AltosEepromLog(config_data, link,
-                                                      flight.flight, flight.start, flight.end));
+                       if (config_data.flights != null) {
+                               for (AltosEepromFlight flight : config_data.flights) {
+                                       add(new AltosEepromLog(config_data, link,
+                                                              flight.flight, flight.start, flight.end));
+                               }
                        }
                } finally {
                        if (remote)