summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/AltosEeprom.java
diff options
context:
space:
mode:
Diffstat (limited to 'ao-tools/altosui/AltosEeprom.java')
-rw-r--r--ao-tools/altosui/AltosEeprom.java6
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);