From b7ee6dc9c1abea389553be66a96c098b9fb108e4 Mon Sep 17 00:00:00 2001 From: wb2osz Date: Wed, 19 Jul 2017 22:03:40 -0400 Subject: [PATCH] Comment about MIC-E format and !DAO! --- decode_aprs.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/decode_aprs.c b/decode_aprs.c index 898d554..d2d1278 100644 --- a/decode_aprs.c +++ b/decode_aprs.c @@ -973,6 +973,8 @@ static void aprs_raw_nmea (decode_aprs_t *A, unsigned char *info, int ilen) * * References: Mic-E TYPE CODES -- http://www.aprs.org/aprs12/mic-e-types.txt * + * This is up to date with the 24 Aug 16 version mentioning the TH-D74. + * * Mic-E TEST EXAMPLES -- http://www.aprs.org/aprs12/mic-e-examples.txt * * Examples: `b9Z!4y>/>"4N}Paul's_TH-D7 @@ -4437,6 +4439,26 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen) * to stretch the numeric range to be 0 to 99. */ +/* + * Here is an interesting case. + * + * W8SAT-1>T2UV0P:`qC<0x1f>l!Xu\'"69}WMNI EDS Response Unit #1|+/%0'n|!w:X!|3 + * + * Let's break that down into pieces. + * + * W8SAT-1>T2UV0P:`qC<0x1f>l!Xu\'"69} MIC-E format + * N 42 56.0000, W 085 39.0300, + * 0 MPH, course 160, alt 709 ft + * WMNI EDS Response Unit #1 comment + * |+/%0'n| base 91 telemetry + * !w:X! DAO + * |3 Tiny Track 3 + * + * Comment earlier points out that MIC-E format has resolution of 0.01 minute, + * same as non-compressed format, so the DAO does work out, after thinking + * about it for a while. + */ + /* * The spec appears to be wrong. It says '}' is the maximum value when it should be '{'. */