summaryrefslogtreecommitdiff
path: root/ao-tools/ao-view
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-11-15 15:59:01 -0800
committerKeith Packard <keithp@keithp.com>2009-11-15 15:59:01 -0800
commit3ee279ba76c2a79d142c466f19ef758cf4c01d70 (patch)
treec6fbd4dc087d931c5566bb03da464baaa7cd7b91 /ao-tools/ao-view
parent6391c89bd5b89f5f46255b8365c658a873e5959a (diff)
Add flight number to telemetry stream.
This makes it easier to tie the telemetry and eeprom files together as they're now both labeled with serial and flight numbers, which should be unique. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/ao-view')
-rw-r--r--ao-tools/ao-view/aoview_state.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ao-tools/ao-view/aoview_state.c b/ao-tools/ao-view/aoview_state.c
index a7545c51..2f613d44 100644
--- a/ao-tools/ao-view/aoview_state.c
+++ b/ao-tools/ao-view/aoview_state.c
@@ -288,6 +288,7 @@ aoview_state_notify(struct cc_telem *data)
aoview_table_add_row(0, "Rocket state", "%s", state->data.state);
aoview_table_add_row(0, "Callsign", "%s", state->data.callsign);
aoview_table_add_row(0, "Rocket serial", "%d", state->data.serial);
+ aoview_table_add_row(0, "Rocket flight", "%d", state->data.flight);
aoview_table_add_row(0, "RSSI", "%6ddBm", state->data.rssi);
aoview_table_add_row(0, "Height", "%6dm", state->height);