diff options
author | Keith Packard <keithp@keithp.com> | 2011-07-16 14:19:41 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-07-16 14:26:45 -0700 |
commit | ebcba28b3c09925869b617880d2919e5d0e059f0 (patch) | |
tree | 734afbba6f009d82a50b4669fae0c5799da60f5e | |
parent | d4375bc737655546c2d40f49acdfc2e60ebfea5a (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.java | 2 |
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; } |