@@ -405,6 +405,7 @@ static int cse_spd_data_extension (int course, int speed, char *presult)
405
405
* Purpose: Put frequency specification in beginning of comment field.
406
406
*
407
407
* Inputs: freq - MHz.
408
+ * tone_type - T/Tone, C/Tone Squelch, D/DCS
408
409
* tone - Hz.
409
410
* offset - MHz.
410
411
*
@@ -430,7 +431,7 @@ static int cse_spd_data_extension (int course, int speed, char *presult)
430
431
*----------------------------------------------------------------*/
431
432
432
433
433
- static int frequency_spec (float freq , float tone , float offset , char * presult )
434
+ static int frequency_spec (float freq , char tone_type , float tone , float offset , char * presult )
434
435
{
435
436
int result_size = 24 ; // TODO: add as parameter.
436
437
@@ -456,7 +457,15 @@ static int frequency_spec (float freq, float tone, float offset, char *presult)
456
457
strlcpy (stemp , "Toff " , sizeof (stemp ));
457
458
}
458
459
else {
459
- snprintf (stemp , sizeof (stemp ), "T%03d " , (int )tone );
460
+ /* Tone enabled */
461
+ if (tone_type == 'T' || tone_type == 'C' || tone_type == 'D' ) {
462
+ /* CTCSS Tone or DCS Code*/
463
+ snprintf (stemp , sizeof (stemp ), "%c%03d " , tone_type , (int )tone );
464
+ } else {
465
+ /* Error */
466
+ text_color_set (DW_COLOR_ERROR );
467
+ dw_printf ("Invalid tone type\n" );
468
+ }
460
469
}
461
470
462
471
strlcat (presult , stemp , result_size );
@@ -499,6 +508,7 @@ static int frequency_spec (float freq, float tone, float offset, char *presult)
499
508
* speed - knots. // TODO: should distinguish unknown(not revevant) vs. known zero.
500
509
*
501
510
* freq - MHz.
511
+ * tone_type - T/C/D
502
512
* tone - Hz.
503
513
* offset - MHz.
504
514
*
@@ -544,7 +554,7 @@ int encode_position (int messaging, int compressed, double lat, double lon, int
544
554
char symtab , char symbol ,
545
555
int power , int height , int gain , char * dir ,
546
556
int course , int speed ,
547
- float freq , float tone , float offset ,
557
+ float freq , char tone_type , float tone , float offset ,
548
558
char * comment ,
549
559
char * presult , size_t result_size )
550
560
{
@@ -590,7 +600,7 @@ int encode_position (int messaging, int compressed, double lat, double lon, int
590
600
/* Optional frequency spec. */
591
601
592
602
if (freq != 0 || tone != 0 || offset != 0 ) {
593
- result_len += frequency_spec (freq , tone , offset , presult + result_len );
603
+ result_len += frequency_spec (freq , tone_type , tone , offset , presult + result_len );
594
604
}
595
605
596
606
presult [result_len ] = '\0' ;
@@ -650,6 +660,7 @@ int encode_position (int messaging, int compressed, double lat, double lon, int
650
660
* speed - knots.
651
661
*
652
662
* freq - MHz.
663
+ * tone_type - T/C/D
653
664
* tone - Hz.
654
665
* offset - MHz.
655
666
*
@@ -687,7 +698,7 @@ int encode_object (char *name, int compressed, time_t thyme, double lat, double
687
698
char symtab , char symbol ,
688
699
int power , int height , int gain , char * dir ,
689
700
int course , int speed ,
690
- float freq , float tone , float offset , char * comment ,
701
+ float freq , char tone_type , float tone , float offset , char * comment ,
691
702
char * presult , size_t result_size )
692
703
{
693
704
aprs_object_t * p = (aprs_object_t * ) presult ;
@@ -753,7 +764,7 @@ int encode_object (char *name, int compressed, time_t thyme, double lat, double
753
764
/* Optional frequency spec. */
754
765
755
766
if (freq != 0 || tone != 0 || offset != 0 ) {
756
- result_len += frequency_spec (freq , tone , offset , presult + result_len );
767
+ result_len += frequency_spec (freq , tone_type , tone , offset , presult + result_len );
757
768
}
758
769
759
770
presult [result_len ] = '\0' ;
@@ -857,58 +868,58 @@ int main (int argc, char *argv[])
857
868
/*********** Position ***********/
858
869
859
870
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
860
- 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 0 , 0 , 0 , NULL , result , sizeof (result ));
871
+ 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 0 , 'T' , 0 , 0 , NULL , result , sizeof (result ));
861
872
dw_printf ("%s\n" , result );
862
873
if (strcmp (result , "!4234.61ND07126.47W&" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
863
874
864
875
/* with PHG. */
865
876
// TODO: Need to test specifying some but not all.
866
877
867
878
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
868
- 50 , 100 , 6 , "N" , G_UNKNOWN , 0 , 0 , 0 , 0 , NULL , result , sizeof (result ));
879
+ 50 , 100 , 6 , "N" , G_UNKNOWN , 0 , 0 , 'T' , 0 , 0 , NULL , result , sizeof (result ));
869
880
dw_printf ("%s\n" , result );
870
881
if (strcmp (result , "!4234.61ND07126.47W&PHG7368" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
871
882
872
883
/* with freq & tone. minus offset, no offset, explicit simplex. */
873
884
874
885
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
875
- 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 146.955 , 74.4 , -0.6 , NULL , result , sizeof (result ));
886
+ 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 146.955 , 'T' , 74.4 , -0.6 , NULL , result , sizeof (result ));
876
887
dw_printf ("%s\n" , result );
877
888
if (strcmp (result , "!4234.61ND07126.47W&146.955MHz T074 -060 " ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
878
889
879
890
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
880
- 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 146.955 , 74.4 , G_UNKNOWN , NULL , result , sizeof (result ));
891
+ 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 146.955 , 'T' , 74.4 , G_UNKNOWN , NULL , result , sizeof (result ));
881
892
dw_printf ("%s\n" , result );
882
893
if (strcmp (result , "!4234.61ND07126.47W&146.955MHz T074 " ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
883
894
884
895
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
885
- 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 146.955 , 74.4 , 0 , NULL , result , sizeof (result ));
896
+ 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 146.955 , 'T' , 74.4 , 0 , NULL , result , sizeof (result ));
886
897
dw_printf ("%s\n" , result );
887
898
if (strcmp (result , "!4234.61ND07126.47W&146.955MHz T074 +000 " ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
888
899
889
900
/* with course/speed, freq, and comment! */
890
901
891
902
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
892
- 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , 74.4 , -0.6 , "River flooding" , result , sizeof (result ));
903
+ 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , 'T' , 74.4 , -0.6 , "River flooding" , result , sizeof (result ));
893
904
dw_printf ("%s\n" , result );
894
905
if (strcmp (result , "!4234.61ND07126.47W&180/055146.955MHz T074 -060 River flooding" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
895
906
896
907
/* Course speed, no tone, + offset */
897
908
898
909
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
899
- 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , G_UNKNOWN , 0.6 , "River flooding" , result , sizeof (result ));
910
+ 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , 'T' , G_UNKNOWN , 0.6 , "River flooding" , result , sizeof (result ));
900
911
dw_printf ("%s\n" , result );
901
912
if (strcmp (result , "!4234.61ND07126.47W&180/055146.955MHz +060 River flooding" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
902
913
903
914
/* Course speed, no tone, + offset + altitude */
904
915
905
916
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , 12345 , 'D' , '&' ,
906
- 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , G_UNKNOWN , 0.6 , "River flooding" , result , sizeof (result ));
917
+ 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , 'T' , G_UNKNOWN , 0.6 , "River flooding" , result , sizeof (result ));
907
918
dw_printf ("%s\n" , result );
908
919
if (strcmp (result , "!4234.61ND07126.47W&180/055146.955MHz +060 /A=012345River flooding" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
909
920
910
921
encode_position (0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , 12345 , 'D' , '&' ,
911
- 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , 0 , 0.6 , "River flooding" , result , sizeof (result ));
922
+ 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , 'T' , 0 , 0.6 , "River flooding" , result , sizeof (result ));
912
923
dw_printf ("%s\n" , result );
913
924
if (strcmp (result , "!4234.61ND07126.47W&180/055146.955MHz Toff +060 /A=012345River flooding" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
914
925
@@ -917,22 +928,22 @@ int main (int argc, char *argv[])
917
928
/*********** Compressed position. ***********/
918
929
919
930
encode_position (0 , 1 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
920
- 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 0 , 0 , 0 , NULL , result , sizeof (result ));
931
+ 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 0 , 'T' , 0 , 0 , NULL , result , sizeof (result ));
921
932
dw_printf ("%s\n" , result );
922
933
if (strcmp (result , "!D8yKC<Hn[& !" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
923
934
924
935
925
936
/* with PHG. In this case it is converted to precomputed radio range. TODO: check on this. Is 27.4 correct? */
926
937
927
938
encode_position (0 , 1 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
928
- 50 , 100 , 6 , "N" , G_UNKNOWN , 0 , 0 , 0 , 0 , NULL , result , sizeof (result ));
939
+ 50 , 100 , 6 , "N" , G_UNKNOWN , 0 , 0 , 'T' , 0 , 0 , NULL , result , sizeof (result ));
929
940
dw_printf ("%s\n" , result );
930
941
if (strcmp (result , "!D8yKC<Hn[&{CG" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
931
942
932
943
/* with course/speed, freq, and comment! Roundoff. 55 knots should be 63 MPH. we get 62. */
933
944
934
945
encode_position (0 , 1 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , G_UNKNOWN , 'D' , '&' ,
935
- 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , 74.4 , -0.6 , "River flooding" , result , sizeof (result ));
946
+ 0 , 0 , 0 , NULL , 180 , 55 , 146.955 , 'T' , 74.4 , -0.6 , "River flooding" , result , sizeof (result ));
936
947
dw_printf ("%s\n" , result );
937
948
if (strcmp (result , "!D8yKC<Hn[&NUG146.955MHz T074 -060 River flooding" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
938
949
@@ -942,7 +953,7 @@ int main (int argc, char *argv[])
942
953
/*********** Object. ***********/
943
954
944
955
encode_object ("WB1GOF-C" , 0 , 0 , 42 + 34.61 /60 , - (71 + 26.47 /60 ), 0 , 'D' , '&' ,
945
- 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 0 , 0 , 0 , NULL , result , sizeof (result ));
956
+ 0 , 0 , 0 , NULL , G_UNKNOWN , 0 , 0 , 'T' , 0 , 0 , NULL , result , sizeof (result ));
946
957
dw_printf ("%s\n" , result );
947
958
if (strcmp (result , ";WB1GOF-C *111111z4234.61ND07126.47W&" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
948
959
0 commit comments