summaryrefslogtreecommitdiff
path: root/altosui/AltosEepromLog.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-08-13 21:09:19 -0700
committerKeith Packard <keithp@keithp.com>2011-08-13 21:09:19 -0700
commitdcd15032eec45f3fdd003050710ebd5b85052662 (patch)
tree774e50fc8fc1e5205adbf2fbba22dda808693ee6 /altosui/AltosEepromLog.java
parent3ba7b6196f68078f4ed4538c4e7fe30699dfe908 (diff)
altosui: Eliminate inter-chunk flush_input calls
Once the serial line is nicely synchronized, we don't need to flush input between chunks. This speeds up eeprom downloading quite a bit. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosEepromLog.java')
-rw-r--r--altosui/AltosEepromLog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosEepromLog.java b/altosui/AltosEepromLog.java
index be2549cb..ee77e5c8 100644
--- a/altosui/AltosEepromLog.java
+++ b/altosui/AltosEepromLog.java
@@ -82,7 +82,7 @@ public class AltosEepromLog {
in_end_block = in_start_block + 2;
for (block = in_start_block; block < in_end_block; block++) {
- AltosEepromChunk eechunk = new AltosEepromChunk(serial_line, block);
+ AltosEepromChunk eechunk = new AltosEepromChunk(serial_line, block, block == in_start_block);
for (int i = 0; i < eechunk.chunk_size; i += AltosEepromRecord.record_length) {
try {