diff options
author | Keith Packard <keithp@keithp.com> | 2019-01-03 11:59:02 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2019-01-03 12:10:35 -0800 |
commit | 72bcff4c1af10571314e5cbbe29f073de818088e (patch) | |
tree | e787aa56e27b74f7f8f53afeddc3bdeb25e0e448 /ao-tools | |
parent | 14900d539c9d379a39ec157bb7e1914aad8fde3c (diff) |
ao-tools/ao-telem: Print out 'log_max' value. Clean up compiler warnings.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools')
-rw-r--r-- | ao-tools/ao-telem/ao-telem.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ao-tools/ao-telem/ao-telem.c b/ao-tools/ao-telem/ao-telem.c index 7ab2310a..ea0aa8d9 100644 --- a/ao-tools/ao-telem/ao-telem.c +++ b/ao-tools/ao-telem/ao-telem.c @@ -44,7 +44,6 @@ main (int argc, char **argv) char line[80]; int c, i, ret = 0; FILE *file; - int serial; int ignore_crc = 0; while ((c = getopt_long(argc, argv, "c", options, NULL)) != -1) { switch (c) { @@ -63,11 +62,6 @@ main (int argc, char **argv) ret++; continue; } - s = strstr(argv[i], "-serial-"); - if (s) - serial = atoi(s + 8); - else - serial = 0; while (fgets(line, sizeof (line), file)) { union ao_telemetry_all telem; char call[AO_MAX_CALLSIGN+1]; @@ -104,7 +98,7 @@ main (int argc, char **argv) memcpy(version, telem.configuration.version, AO_MAX_VERSION); call[AO_MAX_CALLSIGN] = '\0'; version[AO_MAX_CALLSIGN] = '\0'; - printf ("device %3d flight %5d config %3d.%03d delay %2d main %4d", + printf ("device %3d flight %5d config %3d.%03d delay %2d main %4d log_max %5d", telem.configuration.device, telem.configuration.flight, telem.configuration.config_major, |