use multimaint-merge to make Debian changelogs less ugly
[fw/altos] / altosui / AltosEepromChunk.java
index 8eec407df395e4aa3ea3f4265f2a14ce6f7ffa1a..59767c2aa60d1bad4eb355d71bdfda58de8d330f 100644 (file)
@@ -52,13 +52,22 @@ public class AltosEepromChunk {
                return data[offset] | (data[offset + 1] << 8);
        }
 
-       public AltosEepromChunk(AltosSerial serial_line, int block)
+       boolean erased(int start, int len) {
+               for (int i = 0; i < len; i++)
+                       if (data[start+i] != 0xff)
+                               return false;
+               return true;
+       }
+
+       public AltosEepromChunk(AltosSerial serial_line, int block, boolean flush)
                throws TimeoutException, InterruptedException {
 
                int     offset;
 
                data = new int[chunk_size];
                address = block * chunk_size;
+               if (flush)
+                       serial_line.flush_input();
                serial_line.printf("e %x\n", block);
 
                for (offset = 0; offset < chunk_size; offset += per_line) {