summaryrefslogtreecommitdiff
path: root/altosui/AltosUI.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-03-24 05:27:57 +0900
committerKeith Packard <keithp@keithp.com>2011-03-24 05:27:57 +0900
commitf3e68341f6f5daaf26dd162e4f9a06c29988986a (patch)
tree2590305c2cc5677f190ae89f4d7ce61005d96544 /altosui/AltosUI.java
parent1e976a105423f2da1842f70da531c9051ba88a7f (diff)
altosui: Add support for telemetry version 4
New telemetry format needed to support TeleNano and TeleMini Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r--altosui/AltosUI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java
index 90e3d7f0..4d17b0d2 100644
--- a/altosui/AltosUI.java
+++ b/altosui/AltosUI.java
@@ -328,7 +328,7 @@ public class AltosUI extends JFrame {
if (input.equals(output)) {
System.out.printf("Not processing '%s'\n", input);
} else {
- AltosWriter writer = open_csv(output);
+ AltosWriter writer = open_csv("/dev/stdout");
if (writer != null) {
writer.write(iterable);
writer.close();