summaryrefslogtreecommitdiff
path: root/altoslib/AltosGPSQuery.java
diff options
context:
space:
mode:
authorMike Beattie <mike@ethernal.org>2012-09-07 18:19:07 +1200
committerMike Beattie <mike@ethernal.org>2012-09-07 18:19:07 +1200
commitda053875c12b25b627e83430c3a956a994b435d5 (patch)
treed864731cc53ea6e176a71d199bf5ba7b7bc4a0f3 /altoslib/AltosGPSQuery.java
parent218c73b5bd5bd5673dc6f259f62b39541c52d6ff (diff)
altoslib: remove obsolete class
Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'altoslib/AltosGPSQuery.java')
-rw-r--r--altoslib/AltosGPSQuery.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/altoslib/AltosGPSQuery.java b/altoslib/AltosGPSQuery.java
index ca04795d..e93af259 100644
--- a/altoslib/AltosGPSQuery.java
+++ b/altoslib/AltosGPSQuery.java
@@ -19,68 +19,6 @@ package org.altusmetrum.AltosLib;
import java.util.concurrent.*;
-class AltosADCTM {
- int tick;
- int accel;
- int pres;
- int temp;
- int batt;
- int drogue;
- int main;
-
- public AltosADCTM(AltosLink link) throws InterruptedException, TimeoutException {
- link.printf("a\n");
- for (;;) {
- String line = link.get_reply_no_dialog(5000);
- if (line == null) {
- throw new TimeoutException();
- }
- if (!line.startsWith("tick:"))
- continue;
- String[] items = line.split("\\s+");
- for (int i = 0; i < items.length;) {
- if (items[i].equals("tick:")) {
- tick = Integer.parseInt(items[i+1]);
- i += 2;
- continue;
- }
- if (items[i].equals("accel:")) {
- accel = Integer.parseInt(items[i+1]);
- i += 2;
- continue;
- }
- if (items[i].equals("pres:")) {
- pres = Integer.parseInt(items[i+1]);
- i += 2;
- continue;
- }
- if (items[i].equals("temp:")) {
- temp = Integer.parseInt(items[i+1]);
- i += 2;
- continue;
- }
- if (items[i].equals("batt:")) {
- batt = Integer.parseInt(items[i+1]);
- i += 2;
- continue;
- }
- if (items[i].equals("drogue:")) {
- drogue = Integer.parseInt(items[i+1]);
- i += 2;
- continue;
- }
- if (items[i].equals("main:")) {
- main = Integer.parseInt(items[i+1]);
- i += 2;
- continue;
- }
- i++;
- }
- break;
- }
- }
-}
-
class AltosGPSQuery extends AltosGPS {
public AltosGPSQuery (AltosLink link, AltosConfigData config_data)
throws TimeoutException, InterruptedException {