-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathtelemetry.c
1364 lines (1051 loc) · 38.6 KB
/
telemetry.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// This file is part of Dire Wolf, an amateur radio packet TNC.
//
// Copyright (C) 2014, 2015 John Langner, WB2OSZ
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//#define DEBUG1 1 /* Parsing of original human readable format. */
//#define DEBUG2 1 /* Parsing of base 91 compressed format. */
//#define DEBUG3 1 /* Parsing of special messages. */
//#define DEBUG4 1 /* Resulting display form. */
#if TEST
#define DEBUG1 1
#define DEBUG2 1
#define DEBUG3 1
#define DEBUG4 1
#endif
/*------------------------------------------------------------------
*
* Module: telemetry.c
*
* Purpose: Decode telemetry information.
* Point out where it violates the protocol spec and
* other applications might not interpret it properly.
*
* References: APRS Protocol, chapter 13.
* http://www.aprs.org/doc/APRS101.PDF
*
* Base 91 compressed format
* http://he.fi/doc/aprs-base91-comment-telemetry.txt
*
*---------------------------------------------------------------*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include "direwolf.h"
#include "ax25_pad.h" // for packet_t, AX25_MAX_ADDR_LEN
#include "decode_aprs.h" // for decode_aprs_t, G_UNKNOWN
#include "textcolor.h"
#include "telemetry.h"
#define MAX(x,y) ((x)>(y) ? (x) : (y))
#define T_NUM_ANALOG 5 /* Number of analog channels. */
#define T_NUM_DIGITAL 8 /* Number of digital channnels. */
#define T_STR_LEN 16 /* Max len for labels and units. */
#define MAGIC1 0xa51111a5 /* For checking storage allocation problems. */
#define MAGIC2 0xa52222a5
#define C_A 0 /* Scaling coefficient positions. */
#define C_B 1
#define C_C 2
/*
* Metadata for telemetry data.
*/
struct t_metadata_s {
int magic1;
struct t_metadata_s * pnext; /* Next in linked list. */
char station[AX25_MAX_ADDR_LEN]; /* Station name with optional SSID. */
char project[40]; /* Description for data. */
/* "Project Name" or "project title" in the spec. */
char name[T_NUM_ANALOG+T_NUM_DIGITAL][T_STR_LEN];
/* Names for channels. e.g. Battery, Temperature */
char unit[T_NUM_ANALOG+T_NUM_DIGITAL][T_STR_LEN];
/* Units for channels. e.g. Volts, Deg.C */
float coeff[T_NUM_ANALOG][3]; /* a, b, c coefficients for scaling. */
int coeff_ndp[T_NUM_ANALOG][3]; /* Number of decimal places for above. */
int sense[T_NUM_DIGITAL]; /* Polarity for digital channels. */
int magic2;
};
static struct t_metadata_s * md_list_head = NULL;
static void t_data_process (struct t_metadata_s *pm, int seq, float araw[T_NUM_ANALOG], int ndp[T_NUM_ANALOG], int draw[T_NUM_DIGITAL], char *output, size_t outputsize);
/*-------------------------------------------------------------------
*
* Name: t_get_metadata
*
* Purpose: Obtain pointer to metadata for specified station.
* If not found, allocate a fresh one and initialize with defaults.
*
* Inputs: station - Station name with optional SSID.
*
* Returns: Pointer to metadata.
*
*--------------------------------------------------------------------*/
static struct t_metadata_s * t_get_metadata (char *station)
{
struct t_metadata_s *p;
int n;
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("t_get_metadata (station=%s)\n", station);
#endif
for (p = md_list_head; p != NULL; p = p->pnext) {
if (strcmp(station, p->station) == 0) {
assert (p->magic1 == MAGIC1);
assert (p->magic2 == MAGIC2);
return (p);
}
}
p = malloc (sizeof (struct t_metadata_s));
memset (p, 0, sizeof (struct t_metadata_s));
p->magic1 = MAGIC1;
strlcpy (p->station, station, sizeof(p->station));
for (n = 0; n < T_NUM_ANALOG; n++) {
snprintf (p->name[n], sizeof(p->name[n]), "A%d", n+1);
}
for (n = 0; n < T_NUM_DIGITAL; n++) {
snprintf (p->name[T_NUM_ANALOG+n], sizeof(p->name[T_NUM_ANALOG+n]), "D%d", n+1);
}
for (n = 0; n < T_NUM_ANALOG; n++) {
p->coeff[n][C_A] = 0.;
p->coeff[n][C_B] = 1.;
p->coeff[n][C_C] = 0.;
p->coeff_ndp[n][C_A] = 0;
p->coeff_ndp[n][C_B] = 0;
p->coeff_ndp[n][C_C] = 0;
}
for (n = 0; n < T_NUM_DIGITAL; n++) {
p->sense[n] = 1;
}
p->magic2 = MAGIC2;
p->pnext = md_list_head;
md_list_head = p;
assert (p->magic1 == MAGIC1);
assert (p->magic2 == MAGIC2);
return (p);
} /* end t_get_metadata */
/*-------------------------------------------------------------------
*
* Name: t_ndp
*
* Purpose: Count number of digits after any decimal point.
*
* Inputs: str - Number in text format.
*
* Returns: Number digits after decimal point. Examples, in --> out.
*
* 1 --> 0
* 1. --> 0
* 1.2 --> 1
* 1.23 --> 2
* etc.
*
*--------------------------------------------------------------------*/
static int t_ndp (char *str)
{
char *p;
p = strchr(str,'.');
if (p == NULL) {
return (0);
}
else {
return (strlen(p+1));
}
}
/*-------------------------------------------------------------------
*
* Name: telemetry_data_original
*
* Purpose: Interpret telemetry data in the original format.
*
* Inputs: station - Name of station reporting telemetry.
* info - Pointer to packet Information field.
* quiet - suppress error messages.
*
* Outputs: output - Decoded telemetry in human readable format.
* TODO: How big does it need to be? (buffer overflow?)
* comment - Any comment after the data.
*
* Description: The first character, after the "T" data type indicator, must be "#"
* followed by a sequence number. Up to 5 analog and 8 digital channel
* values are specified as in this example from the protocol spec.
*
* T#005,199,000,255,073,123,01101001
*
* The analog values are supposed to be 3 digit integers in the
* range of 000 to 255 in fixed columns. After reading the discussion
* groups it seems that few adhere to those restrictions. When I
* started to look for some local signals, this was the first one
* to appear:
*
* KB1GKN-10>APRX27,UNCAN,WIDE1*:T#491,4.9,0.3,25.0,0.0,1.0,00000000
*
* Not integers. Not fixed width fields.
* We will accept these but issue a warning that others might not.
*
*--------------------------------------------------------------------*/
void telemetry_data_original (char *station, char *info, int quiet, char *output, size_t outputsize, char *comment, size_t commentsize)
{
int n;
int seq;
char stemp[256];
char *next;
char *p;
float araw[T_NUM_ANALOG];
int ndp[T_NUM_ANALOG];
int draw[T_NUM_DIGITAL];
struct t_metadata_s *pm;
#if DEBUG1
text_color_set(DW_COLOR_DEBUG);
dw_printf ("\n%s\n\n", info);
#endif
strlcpy (output, "", outputsize);
strlcpy (comment, "", commentsize);
pm = t_get_metadata(station);
assert (pm->magic1 == MAGIC1);
assert (pm->magic2 == MAGIC2);
seq = 0;
for (n = 0; n < T_NUM_ANALOG; n++) {
araw[n] = G_UNKNOWN;
ndp[n] = 0;
}
for (n = 0; n < T_NUM_DIGITAL; n++) {
draw[n] = G_UNKNOWN;
}
if (strncmp(info, "T#", 2) != 0) {
if ( ! quiet) {
text_color_set(DW_COLOR_ERROR);
dw_printf("Error: Information part of telemetry packet must begin with \"#\"\n");
}
return;
}
/*
* Make a copy of the input string because this will alter it.
* Remove any trailing CR/LF.
*/
strlcpy (stemp, info+2, sizeof(stemp));
for (p = stemp + strlen(stemp) - 1; p >= stemp && (*p == '\r' || *p == '\n') ; p--) {
*p = '\0';
}
next = stemp;
p = strsep(&next,",");
seq = atoi(p);
n = 0;
while ((p = strsep(&next,",")) != NULL) {
if (n < T_NUM_ANALOG) {
if (strlen(p) > 0) {
araw[n] = atof(p);
ndp[n] = t_ndp(p);
}
// Version 1.3: Suppress this message.
// No one pays attention to the original 000 to 255 range.
// BTW, this doesn't trap values like 0.0 or 1.0
//if (strlen(p) != 3 || araw[n] < 0 || araw[n] > 255 || araw[n] != (int)(araw[n])) {
// if ( ! quiet) {
// text_color_set(DW_COLOR_ERROR);
// dw_printf("Telemetry analog values should be 3 digit integer values in range of 000 to 255.\n");
// dw_printf("Some applications might not interpret \"%s\" properly.\n", p);
// }
//}
n++;
}
if (n == T_NUM_ANALOG && next != NULL) {
/* We expect to have 8 digits of 0 and 1. */
/* Anything left over is a comment. */
int k;
if (strlen(next) < 8) {
if ( ! quiet) {
text_color_set(DW_COLOR_ERROR);
dw_printf("Expected to find 8 binary digits after \"%s\" for the digital values.\n", p);
}
}
// TODO: test this!
if (strlen(next) > 8) {
strlcpy (comment, next+8, commentsize);
next[8] = '\0';
}
for (k = 0; k < strlen(next); k++) {
if (next[k] == '0') {
draw[k] = 0;
}
else if (next[k] == '1') {
draw[k] = 1;
}
else {
if ( ! quiet) {
text_color_set(DW_COLOR_ERROR);
dw_printf("Found \"%c\" when expecting 0 or 1 for digital value %d.\n", next[k], k+1);
}
}
}
n++;
}
}
if (n < T_NUM_ANALOG+1) {
if ( ! quiet) {
text_color_set(DW_COLOR_ERROR);
dw_printf("Found fewer than expected number of telemetry data values.\n");
}
}
/*
* Now process the raw data with any metadata available.
*/
#if DEBUG1
text_color_set(DW_COLOR_DECODED);
dw_printf ("%d: %.3f %.3f %.3f %.3f %.3f \n",
seq, araw[0], araw[1], araw[2], araw[3], araw[4]);
dw_printf ("%d %d %d %d %d %d %d %d \"%s\"\n",
draw[0], draw[1], draw[2], draw[3], draw[4], draw[5], draw[6], draw[7], comment);
#endif
t_data_process (pm, seq, araw, ndp, draw, output, outputsize);
} /* end telemtry_data_original */
/*-------------------------------------------------------------------
*
* Name: telemetry_data_base91
*
* Purpose: Interpret telemetry data in the base 91 compressed format.
*
* Inputs: station - Name of station reporting telemetry.
* cdata - Compressed data as character string.
*
* Outputs: output - Telemetry in human readable form.
*
* Description: We are expecting from 2 to 7 pairs of base 91 digits.
* The first pair is the sequence number.
* Next we have 1 to 5 analog values.
* If digital values are present, all 5 analog values must be present.
*
*--------------------------------------------------------------------*/
/* Range of digits for Base 91 representation. */
#define B91_MIN '!'
#define B91_MAX '{'
#define isdigit91(c) ((c) >= B91_MIN && (c) <= B91_MAX)
static int two_base91_to_i (char *c)
{
int result = 0;
assert (B91_MAX - B91_MIN == 90);
if (isdigit91(c[0])) {
result = (c[0] - B91_MIN) * 91;
}
else {
text_color_set(DW_COLOR_DEBUG);
dw_printf ("\"%c\" is not a valid character for base 91 telemetry data.\n", c[0]);
return (G_UNKNOWN);
}
if (isdigit91(c[1])) {
result += (c[1] - B91_MIN);
}
else {
text_color_set(DW_COLOR_DEBUG);
dw_printf ("\"%c\" is not a valid character for base 91 telemetry data.\n", c[1]);
return (G_UNKNOWN);
}
return (result);
}
void telemetry_data_base91 (char *station, char *cdata, char *output, size_t outputsize)
{
int n;
int seq;
char *p;
float araw[T_NUM_ANALOG];
int ndp[T_NUM_ANALOG];
int draw[T_NUM_DIGITAL];
struct t_metadata_s *pm;
#if DEBUG2
text_color_set(DW_COLOR_DEBUG);
dw_printf ("\n%s\n\n", cdata);
#endif
strlcpy (output, "", outputsize);
pm = t_get_metadata(station);
assert (pm->magic1 == MAGIC1);
assert (pm->magic2 == MAGIC2);
seq = 0;
for (n = 0; n < T_NUM_ANALOG; n++) {
araw[n] = G_UNKNOWN;
ndp[n] = 0;
}
for (n = 0; n < T_NUM_DIGITAL; n++) {
draw[n] = G_UNKNOWN;
}
if (strlen(cdata) < 4 || strlen(cdata) > 14 || (strlen(cdata) & 1)) {
text_color_set(DW_COLOR_ERROR);
dw_printf("Internal error: Expected even number of 2 to 14 characters but got \"%s\"\n", cdata);
return;
}
seq = two_base91_to_i (cdata);
for (n=0, p=cdata+2; n<T_NUM_ANALOG+1 && *p!='\0'; n++,p+=2) {
if (n < T_NUM_ANALOG) {
araw[n] = two_base91_to_i (p);
}
else {
int k;
int b = two_base91_to_i (p);
for (k=0; k<T_NUM_DIGITAL; k++) {
draw[k] = b & 1;
b >>= 1;
}
}
}
/*
* Now process the raw data with any metadata available.
*/
#if DEBUG2
text_color_set(DW_COLOR_DECODED);
dw_printf ("%d: %.3f %.3f %.3f %.3f %.3f \n",
seq, araw[0], araw[1], araw[2], araw[3], araw[4]);
dw_printf ("%d %d %d %d %d %d %d %d \n",
draw[0], draw[1], draw[2], draw[3], draw[4], draw[5], draw[6], draw[7]);
#endif
t_data_process (pm, seq, araw, ndp, draw, output, outputsize);
} /* end telemtry_data_base91 */
/*-------------------------------------------------------------------
*
* Name: telemetry_name_message
*
* Purpose: Interpret message with names for analog and digital channels.
*
* Inputs: station - Name of station reporting telemetry.
* In this case it is the destination for the message,
* not the sender.
* msg - Rest of message after "PARM."
*
* Outputs: Stored for future use when data values are received.
*
* Description: The first 5 characters of the message are "PARM." and the
* rest is a variable length list of comma separated names.
*
* The original spec has different maximum lengths for different
* fields which we will ignore.
*
* TBD: What should we do if some, but not all, names are specified?
* Clear the others or keep the defaults?
*
*--------------------------------------------------------------------*/
void telemetry_name_message (char *station, char *msg)
{
int n;
char stemp[256];
char *next;
char *p;
struct t_metadata_s *pm;
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("\n%s\n\n", msg);
#endif
/*
* Make a copy of the input string because this will alter it.
* Remove any trailing CR LF.
*/
strlcpy (stemp, msg, sizeof(stemp));
for (p = stemp + strlen(stemp) - 1; p >= stemp && (*p == '\r' || *p == '\n') ; p--) {
*p = '\0';
}
pm = t_get_metadata(station);
assert (pm->magic1 == MAGIC1);
assert (pm->magic2 == MAGIC2);
next = stemp;
n = 0;
while ((p = strsep(&next,",")) != NULL) {
if (n < T_NUM_ANALOG + T_NUM_DIGITAL) {
if (strlen(p) > 0 && strcmp(p,"-") != 0) {
strlcpy (pm->name[n], p, sizeof(pm->name[n]));
}
n++;
}
}
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("names:\n");
for (n = 0; n < T_NUM_ANALOG + T_NUM_DIGITAL; n++) {
dw_printf ("%d=\"%s\"\n", n, pm->name[n]);
}
#endif
} /* end telemetry_name_message */
/*-------------------------------------------------------------------
*
* Name: telemetry_unit_label_message
*
* Purpose: Interpret message with units/labels for analog and digital channels.
*
* Inputs: station - Name of station reporting telemetry.
* In this case it is the destination for the message,
* not the sender.
* msg - Rest of message after "UNIT."
*
* Outputs: Stored for future use when data values are received.
*
* Description: The first 5 characters of the message are "UNIT." and the
* rest is a variable length list of comma separated units/labels.
*
* The original spec has different maximum lengths for different
* fields which we will ignore.
*
*--------------------------------------------------------------------*/
void telemetry_unit_label_message (char *station, char *msg)
{
int n;
char stemp[256];
char *next;
char *p;
struct t_metadata_s *pm;
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("\n%s\n\n", msg);
#endif
/*
* Make a copy of the input string because this will alter it.
* Remove any trailing CR LF.
*/
strlcpy (stemp, msg, sizeof(stemp));
for (p = stemp + strlen(stemp) - 1; p >= stemp && (*p == '\r' || *p == '\n') ; p--) {
*p = '\0';
}
pm = t_get_metadata(station);
assert (pm->magic1 == MAGIC1);
assert (pm->magic2 == MAGIC2);
next = stemp;
n = 0;
while ((p = strsep(&next,",")) != NULL) {
if (n < T_NUM_ANALOG + T_NUM_DIGITAL) {
if (strlen(p) > 0) {
strlcpy (pm->unit[n], p, sizeof(pm->unit[n]));
}
n++;
}
}
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("units/labels:\n");
for (n = 0; n < T_NUM_ANALOG + T_NUM_DIGITAL; n++) {
dw_printf ("%d=\"%s\"\n", n, pm->unit[n]);
}
#endif
} /* end telemetry_unit_label_message */
/*-------------------------------------------------------------------
*
* Name: telemetry_coefficents_message
*
* Purpose: Interpret message with scaling coefficents for analog channels.
*
* Inputs: station - Name of station reporting telemetry.
* In this case it is the destination for the message,
* not the sender.
* msg - Rest of message after "EQNS."
* quiet - suppress error messages.
*
* Outputs: Stored for future use when data values are received.
*
* Description: The first 5 characters of the message are "EQNS." and the
* rest is a comma separated list of 15 floating point values.
*
* The spec appears to require all 15 so we will issue an
* error if fewer found.
*
*--------------------------------------------------------------------*/
void telemetry_coefficents_message (char *station, char *msg, int quiet)
{
int n;
char stemp[256];
char *next;
char *p;
struct t_metadata_s *pm;
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("\n%s\n\n", msg);
#endif
/*
* Make a copy of the input string because this will alter it.
* Remove any trailing CR LF.
*/
strlcpy (stemp, msg, sizeof(stemp));
for (p = stemp + strlen(stemp) - 1; p >= stemp && (*p == '\r' || *p == '\n') ; p--) {
*p = '\0';
}
pm = t_get_metadata(station);
assert (pm->magic1 == MAGIC1);
assert (pm->magic2 == MAGIC2);
next = stemp;
n = 0;
while ((p = strsep(&next,",")) != NULL) {
if (n < T_NUM_ANALOG * 3) {
// Keep default (or earlier value) for an empty field.
if (strlen(p) > 0) {
pm->coeff[n/3][n%3] = atof (p);
pm->coeff_ndp[n/3][n%3] = t_ndp (p);
}
else {
if ( ! quiet) {
text_color_set(DW_COLOR_ERROR);
dw_printf ("Equation coefficent position A%d%c is empty.\n", n/3+1, n%3+'a');
dw_printf ("Some applications might not handle this correctly.\n");
}
}
}
n++;
}
if (n != T_NUM_ANALOG * 3) {
if ( ! quiet) {
text_color_set(DW_COLOR_ERROR);
dw_printf ("Found %d equation coefficents when 15 were expected.\n", n);
dw_printf ("Some applications might not handle this correctly.\n");
}
}
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("coeff:\n");
for (n = 0; n < T_NUM_ANALOG; n++) {
dw_printf ("A%d a=%.*f b=%.*f c=%.*f\n", n+1,
pm->coeff_ndp[n][C_A], pm->coeff[n][C_A],
pm->coeff_ndp[n][C_B], pm->coeff[n][C_B],
pm->coeff_ndp[n][C_C], pm->coeff[n][C_C]);
}
#endif
} /* end telemetry_coefficents_message */
/*-------------------------------------------------------------------
*
* Name: telemetry_bit_sense_message
*
* Purpose: Interpret message with scaling coefficents for analog channels.
*
* Inputs: station - Name of station reporting telemetry.
* In this case it is the destination for the message,
* not the sender.
* msg - Rest of message after "BITS."
* quiet - suppress error messages.
*
* Outputs: Stored for future use when data values are received.
*
* Description: The first 5 characters of the message are "BITS."
* It should contain eight binary digits for the digital active states.
* Anything left over is the project name or title.
*
*--------------------------------------------------------------------*/
void telemetry_bit_sense_message (char *station, char *msg, int quiet)
{
int n;
struct t_metadata_s *pm;
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("\n%s\n\n", msg);
#endif
pm = t_get_metadata(station);
assert (pm->magic1 == MAGIC1);
assert (pm->magic2 == MAGIC2);
if (strlen(msg) < 8) {
if ( ! quiet) {
text_color_set(DW_COLOR_ERROR);
dw_printf ("The telemetry bit sense message should have at least 8 characters.\n");
}
}
for (n = 0; n < T_NUM_DIGITAL && n < strlen(msg); n++) {
if (msg[n] == '1') {
pm->sense[n] = 1;
}
else if (msg[n] == '0') {
pm->sense[n] = 0;
}
else {
if ( ! quiet) {
text_color_set(DW_COLOR_ERROR);
dw_printf ("Bit position %d sense value was \"%c\" when 0 or 1 was expected.\n", n+1, msg[n]);
}
}
}
/* Skip comma if first character of comment field. */
if (msg[n] == ',') n++;
strlcpy (pm->project, msg+n, sizeof(pm->project));
#if DEBUG3
text_color_set(DW_COLOR_DEBUG);
dw_printf ("bit sense, project:\n");
dw_printf ("%d %d %d %d %d %d %d %d \"%s\"\n",
pm->sense[0],
pm->sense[1],
pm->sense[2],
pm->sense[3],
pm->sense[4],
pm->sense[5],
pm->sense[6],
pm->sense[7],
pm->project);
#endif
} /* end telemetry_bit_sense_message */
/*-------------------------------------------------------------------
*
* Name: t_data_process
*
* Purpose: Interpret telemetry data in the original format.
*
* Inputs: pm - Pointer to metadata.
* seq - Sequence number.
* araw - 5 analog raw values.
* ndp - Number of decimal points for each.
* draw - 8 digial raw vales.
*
* Outputs: output - Decoded telemetry in human readable format.
*
* Description: Process raw data according to any metadata available
* and put into human readable form.
*
*--------------------------------------------------------------------*/
#define VAL_STR_SIZE 64
static void fval_to_str (float x, int ndp, char str[VAL_STR_SIZE])
{
if (x == G_UNKNOWN) {
strlcpy (str, "?", VAL_STR_SIZE);
}
else {
snprintf (str, VAL_STR_SIZE, "%.*f", ndp, x);
}
}
static void ival_to_str (int x, char str[VAL_STR_SIZE])
{
if (x == G_UNKNOWN) {
strlcpy (str, "?", VAL_STR_SIZE);
}
else {
snprintf (str, VAL_STR_SIZE, "%d", x);
}
}
static void t_data_process (struct t_metadata_s *pm, int seq, float araw[T_NUM_ANALOG], int ndp[T_NUM_ANALOG], int draw[T_NUM_DIGITAL], char *output, size_t outputsize)
{
int n;
char val_str[VAL_STR_SIZE];
assert (pm != NULL);
assert (pm->magic1 == MAGIC1);
assert (pm->magic2 == MAGIC2);
strlcpy (output, "", outputsize);
if (strlen(pm->project) > 0) {
strlcpy (output, pm->project, outputsize);
strlcat (output, ": ", outputsize);
}
ival_to_str (seq, val_str);
strlcat (output, "Seq=", outputsize);
strlcat (output, val_str, outputsize);
for (n = 0; n < T_NUM_ANALOG; n++) {
// Display all or only defined values? Only defined for now.
if (araw[n] != G_UNKNOWN) {
float fval;
int fndp;
strlcat (output, ", ", outputsize);
strlcat (output, pm->name[n], outputsize);
strlcat (output, "=", outputsize);
// Scaling and suitable number of decimal places for display.
if (araw[n] == G_UNKNOWN) {
fval = G_UNKNOWN;
fndp = 0;
}
else {
int z;
fval = pm->coeff[n][C_A] * araw[n] * araw[n] +
pm->coeff[n][C_B] * araw[n] +
pm->coeff[n][C_C];
z = pm->coeff_ndp[n][C_A] == 0 ? 0 : pm->coeff_ndp[n][C_A] + ndp[n] + ndp[n];
fndp = MAX (z, MAX(pm->coeff_ndp[n][C_B] + ndp[n], pm->coeff_ndp[n][C_C]));
}
fval_to_str (fval, fndp, val_str);
strlcat (output, val_str, outputsize);
if (strlen(pm->unit[n]) > 0) {
strlcat (output, " ", outputsize);
strlcat (output, pm->unit[n], outputsize);
}
}
}
for (n = 0; n < T_NUM_DIGITAL; n++) {
// Display all or only defined values? Only defined for now.
if (draw[n] != G_UNKNOWN) {
int dval;
strlcat (output, ", ", outputsize);
strlcat (output, pm->name[T_NUM_ANALOG+n], outputsize);
strlcat (output, "=", outputsize);
// Possible inverting for bit sense.
if (draw[n] == G_UNKNOWN) {
dval = G_UNKNOWN;
}
else {
dval = draw[n] ^ ! pm->sense[n];
}
ival_to_str (dval, val_str);
if (strlen(pm->unit[T_NUM_ANALOG+n]) > 0) {
strlcat (output, " ", outputsize);
strlcat (output, pm->unit[T_NUM_ANALOG+n], outputsize);
}
strlcat (output, val_str, outputsize);
}
}
#if DEBUG4
text_color_set(DW_COLOR_DEBUG);