summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-07-16 14:19:41 -0700
committerKeith Packard <keithp@keithp.com>2011-07-16 14:26:45 -0700
commitebcba28b3c09925869b617880d2919e5d0e059f0 (patch)
tree734afbba6f009d82a50b4669fae0c5799da60f5e
parentd4375bc737655546c2d40f49acdfc2e60ebfea5a (diff)
altosui: Configuration telemetry record includes flight number
Mark the reported altos record as including flight information. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altosui/AltosTelemetryRecordConfiguration.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosTelemetryRecordConfiguration.java b/altosui/AltosTelemetryRecordConfiguration.java
index 98dc6ab9..b029d120 100644
--- a/altosui/AltosTelemetryRecordConfiguration.java
+++ b/altosui/AltosTelemetryRecordConfiguration.java
@@ -57,7 +57,7 @@ public class AltosTelemetryRecordConfiguration extends AltosTelemetryRecordRaw {
next.callsign = callsign;
next.firmware_version = version;
- next.seen |= AltosRecord.seen_deploy;
+ next.seen |= AltosRecord.seen_deploy | AltosRecord.seen_flight;
return next;
}