summaryrefslogtreecommitdiff
path: root/altosui/AltosDataPoint.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-02-10 00:29:29 -0800
committerKeith Packard <keithp@keithp.com>2013-02-10 00:30:32 -0800
commit2efd3ad80d4fefa8ccc1b80a2e657dbf9ba0c60f (patch)
tree02fdd0be077d082702da5f150670437e080318e2 /altosui/AltosDataPoint.java
parent0169e56ad030c0096b1068d00f06957990dfb31f (diff)
altosui/altoslib/altosuilib: Switch altosui to shared graph code
This adds a configuration tab to the graph window to enable/disable various plotted values. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosDataPoint.java')
-rw-r--r--altosui/AltosDataPoint.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/altosui/AltosDataPoint.java b/altosui/AltosDataPoint.java
deleted file mode 100644
index 4956e9f3..00000000
--- a/altosui/AltosDataPoint.java
+++ /dev/null
@@ -1,27 +0,0 @@
-
-// Copyright (c) 2010 Anthony Towns
-// GPL v2 or later
-
-package altosui;
-
-interface AltosDataPoint {
- int version();
- int serial();
- int flight();
- String callsign();
- double time();
- double rssi();
-
- int state();
- String state_name();
-
- double acceleration();
- double height();
- double speed();
- double temperature();
- double battery_voltage();
- double drogue_voltage();
- double main_voltage();
- boolean has_accel();
-}
-