diff options
author | Keith Packard <keithp@keithp.com> | 2010-07-29 11:45:12 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-07-29 11:45:12 -0700 |
commit | 91d75fb3919f606a1956bf8c6423a8012d99a56a (patch) | |
tree | b20265854b9547556ebe6146183f5cf3a1b34aa6 | |
parent | 6f86db5e0360bef26b21336769b7635e3a11e160 (diff) |
altosui: Switch eeprom extension back to .eeprom
-rw-r--r-- | ao-tools/altosui/AltosEeprom.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ao-tools/altosui/AltosEeprom.java b/ao-tools/altosui/AltosEeprom.java index 6162521f..4c537a89 100644 --- a/ao-tools/altosui/AltosEeprom.java +++ b/ao-tools/altosui/AltosEeprom.java @@ -199,9 +199,9 @@ public class AltosEeprom implements Runnable { if (eeprom_file == null) { if (serial != 0 && flight != 0 && want_file) { if (year != 0 && month != 0 && day != 0) - eeprom_name = new AltosFile(year, month, day, serial, flight, "eeprom-new"); + eeprom_name = new AltosFile(year, month, day, serial, flight, "eeprom"); else - eeprom_name = new AltosFile(serial, flight, "eeprom-new"); + eeprom_name = new AltosFile(serial, flight, "eeprom"); monitor.set_file(eeprom_name.getName()); eeprom_file = new FileWriter(eeprom_name); @@ -229,7 +229,7 @@ public class AltosEeprom implements Runnable { done = true; } if (eeprom_file == null) { - eeprom_name = new AltosFile(serial,flight,"eeprom-new"); + eeprom_name = new AltosFile(serial,flight,"eeprom"); eeprom_file = new FileWriter(eeprom_name); if (eeprom_file != null) { FlushPending(eeprom_file, eeprom_pending); |