Skip to content

Commit 2b236d7

Browse files
committed
Add support for full CTCSS and DCS beacon options
1 parent e41a7f2 commit 2b236d7

8 files changed

+52
-28
lines changed

src/beacon.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
892892
bp->symtab, bp->symbol,
893893
bp->power, bp->height, bp->gain, bp->dir,
894894
G_UNKNOWN, G_UNKNOWN, /* course, speed */
895-
bp->freq, bp->tone, bp->offset,
895+
bp->freq, bp->tone_type, bp->tone, bp->offset,
896896
super_comment,
897897
info, sizeof(info));
898898
strlcat (beacon_text, info, sizeof(beacon_text));
@@ -904,7 +904,7 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
904904
bp->symtab, bp->symbol,
905905
bp->power, bp->height, bp->gain, bp->dir,
906906
G_UNKNOWN, G_UNKNOWN, /* course, speed */
907-
bp->freq, bp->tone, bp->offset, super_comment,
907+
bp->freq, bp-> tone_type, bp->tone, bp->offset, super_comment,
908908
info, sizeof(info));
909909
strlcat (beacon_text, info, sizeof(beacon_text));
910910
break;
@@ -935,7 +935,7 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
935935
bp->symtab, bp->symbol,
936936
bp->power, bp->height, bp->gain, bp->dir,
937937
coarse, (int)roundf(gpsinfo->speed_knots),
938-
bp->freq, bp->tone, bp->offset,
938+
bp->freq, bp->tone_type, bp->tone, bp->offset,
939939
super_comment,
940940
info, sizeof(info));
941941
strlcat (beacon_text, info, sizeof(beacon_text));

src/config.c

+13-1
Original file line numberDiff line numberDiff line change
@@ -5663,6 +5663,7 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
56635663
b->symtab = '/';
56645664
b->symbol = '-'; /* house */
56655665
b->freq = G_UNKNOWN;
5666+
b->tone_type = 'T';
56665667
b->tone = G_UNKNOWN;
56675668
b->offset = G_UNKNOWN;
56685669
b->source = NULL;
@@ -5913,7 +5914,18 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
59135914
b->freq = atof(value);
59145915
}
59155916
else if (strcasecmp(keyword, "TONE") == 0) {
5916-
b->tone = atof(value);
5917+
b->tone_type = 'T';
5918+
/* Try the legacy tone config, just a number */
5919+
if((b->tone = atof(value)) == 0) {
5920+
/* Legacy parsing failed, try with leading type char */
5921+
if(sscanf(value, "%c%f", &b->tone_type, &b->tone) != 2) {
5922+
/* That failed. Bad tone format, set to no tone */
5923+
b->tone_type = 'T';
5924+
b->tone = 0;
5925+
text_color_set(DW_COLOR_ERROR);
5926+
dw_printf ("Config file, line %d: Bad tone format, %s.\n", line, value);
5927+
}
5928+
}
59175929
}
59185930
else if (strcasecmp(keyword, "OFFSET") == 0 || strcasecmp(keyword, "OFF") == 0) {
59195931
b->offset = atof(value);

src/config.h

+1
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ struct misc_config_s {
221221
char dir[3]; /* 1 or 2 of N,E,W,S, or empty for omni. */
222222

223223
float freq; /* MHz. */
224+
char tone_type; /* Tone(T), Tone Squelch(C) or DCS(D) */
224225
float tone; /* Hz. */
225226
float offset; /* MHz. */
226227

src/direwolf.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1495,7 +1495,7 @@ void app_process_rec_packet (int chan, int subchan, int slice, packet_t pp, alev
14951495
// Unknown not handled properly.
14961496
// Should encode_object take floating point here?
14971497
(int)(A.g_course+0.5), (int)(DW_MPH_TO_KNOTS(A.g_speed_mph)+0.5),
1498-
0, 0, 0, A.g_comment, // freq, tone, offset
1498+
0, 'T', 0, 0, A.g_comment, // freq, tone_type, tone, offset
14991499
ais_obj_info, sizeof(ais_obj_info));
15001500

15011501
snprintf (ais_obj_packet, sizeof(ais_obj_packet), "%s>%s%1d%1d:%s", A.g_src, APP_TOCALL, MAJOR_VERSION, MINOR_VERSION, ais_obj_info);

src/encode_aprs.c

+30-19
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,7 @@ static int cse_spd_data_extension (int course, int speed, char *presult)
405405
* Purpose: Put frequency specification in beginning of comment field.
406406
*
407407
* Inputs: freq - MHz.
408+
* tone_type - T/Tone, C/Tone Squelch, D/DCS
408409
* tone - Hz.
409410
* offset - MHz.
410411
*
@@ -430,7 +431,7 @@ static int cse_spd_data_extension (int course, int speed, char *presult)
430431
*----------------------------------------------------------------*/
431432

432433

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)
434435
{
435436
int result_size = 24; // TODO: add as parameter.
436437

@@ -456,7 +457,15 @@ static int frequency_spec (float freq, float tone, float offset, char *presult)
456457
strlcpy (stemp, "Toff ", sizeof (stemp));
457458
}
458459
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+
}
460469
}
461470

462471
strlcat (presult, stemp, result_size);
@@ -499,6 +508,7 @@ static int frequency_spec (float freq, float tone, float offset, char *presult)
499508
* speed - knots. // TODO: should distinguish unknown(not revevant) vs. known zero.
500509
*
501510
* freq - MHz.
511+
* tone_type - T/C/D
502512
* tone - Hz.
503513
* offset - MHz.
504514
*
@@ -544,7 +554,7 @@ int encode_position (int messaging, int compressed, double lat, double lon, int
544554
char symtab, char symbol,
545555
int power, int height, int gain, char *dir,
546556
int course, int speed,
547-
float freq, float tone, float offset,
557+
float freq, char tone_type, float tone, float offset,
548558
char *comment,
549559
char *presult, size_t result_size)
550560
{
@@ -590,7 +600,7 @@ int encode_position (int messaging, int compressed, double lat, double lon, int
590600
/* Optional frequency spec. */
591601

592602
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);
594604
}
595605

596606
presult[result_len] = '\0';
@@ -650,6 +660,7 @@ int encode_position (int messaging, int compressed, double lat, double lon, int
650660
* speed - knots.
651661
*
652662
* freq - MHz.
663+
* tone_type - T/C/D
653664
* tone - Hz.
654665
* offset - MHz.
655666
*
@@ -687,7 +698,7 @@ int encode_object (char *name, int compressed, time_t thyme, double lat, double
687698
char symtab, char symbol,
688699
int power, int height, int gain, char *dir,
689700
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,
691702
char *presult, size_t result_size)
692703
{
693704
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
753764
/* Optional frequency spec. */
754765

755766
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);
757768
}
758769

759770
presult[result_len] = '\0';
@@ -857,58 +868,58 @@ int main (int argc, char *argv[])
857868
/*********** Position ***********/
858869

859870
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));
861872
dw_printf ("%s\n", result);
862873
if (strcmp(result, "!4234.61ND07126.47W&") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
863874

864875
/* with PHG. */
865876
// TODO: Need to test specifying some but not all.
866877

867878
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));
869880
dw_printf ("%s\n", result);
870881
if (strcmp(result, "!4234.61ND07126.47W&PHG7368") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
871882

872883
/* with freq & tone. minus offset, no offset, explicit simplex. */
873884

874885
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));
876887
dw_printf ("%s\n", result);
877888
if (strcmp(result, "!4234.61ND07126.47W&146.955MHz T074 -060 ") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
878889

879890
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));
881892
dw_printf ("%s\n", result);
882893
if (strcmp(result, "!4234.61ND07126.47W&146.955MHz T074 ") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
883894

884895
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));
886897
dw_printf ("%s\n", result);
887898
if (strcmp(result, "!4234.61ND07126.47W&146.955MHz T074 +000 ") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
888899

889900
/* with course/speed, freq, and comment! */
890901

891902
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));
893904
dw_printf ("%s\n", result);
894905
if (strcmp(result, "!4234.61ND07126.47W&180/055146.955MHz T074 -060 River flooding") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
895906

896907
/* Course speed, no tone, + offset */
897908

898909
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));
900911
dw_printf ("%s\n", result);
901912
if (strcmp(result, "!4234.61ND07126.47W&180/055146.955MHz +060 River flooding") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
902913

903914
/* Course speed, no tone, + offset + altitude */
904915

905916
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));
907918
dw_printf ("%s\n", result);
908919
if (strcmp(result, "!4234.61ND07126.47W&180/055146.955MHz +060 /A=012345River flooding") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
909920

910921
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));
912923
dw_printf ("%s\n", result);
913924
if (strcmp(result, "!4234.61ND07126.47W&180/055146.955MHz Toff +060 /A=012345River flooding") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
914925

@@ -917,22 +928,22 @@ int main (int argc, char *argv[])
917928
/*********** Compressed position. ***********/
918929

919930
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));
921932
dw_printf ("%s\n", result);
922933
if (strcmp(result, "!D8yKC<Hn[& !") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
923934

924935

925936
/* with PHG. In this case it is converted to precomputed radio range. TODO: check on this. Is 27.4 correct? */
926937

927938
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));
929940
dw_printf ("%s\n", result);
930941
if (strcmp(result, "!D8yKC<Hn[&{CG") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
931942

932943
/* with course/speed, freq, and comment! Roundoff. 55 knots should be 63 MPH. we get 62. */
933944

934945
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));
936947
dw_printf ("%s\n", result);
937948
if (strcmp(result, "!D8yKC<Hn[&NUG146.955MHz T074 -060 River flooding") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
938949

@@ -942,7 +953,7 @@ int main (int argc, char *argv[])
942953
/*********** Object. ***********/
943954

944955
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));
946957
dw_printf ("%s\n", result);
947958
if (strcmp(result, ";WB1GOF-C *111111z4234.61ND07126.47W&") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
948959

src/encode_aprs.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ int encode_position (int messaging, int compressed, double lat, double lon, int
33
char symtab, char symbol,
44
int power, int height, int gain, char *dir,
55
int course, int speed_knots,
6-
float freq, float tone, float offset,
6+
float freq, char tone_type, float tone, float offset,
77
char *comment,
88
char *presult, size_t result_size);
99

1010
int encode_object (char *name, int compressed, time_t thyme, double lat, double lon, int ambiguity,
1111
char symtab, char symbol,
1212
int power, int height, int gain, char *dir,
1313
int course, int speed_knots,
14-
float freq, float tone, float offset, char *comment,
14+
float freq, char tone_type, float tone, float offset, char *comment,
1515
char *presult, size_t result_size);
1616

1717
int encode_message (char *addressee, char *text, char *id, char *presult, size_t result_size);

src/tt_user.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ static void xmit_object_report (int i, int first_time)
847847
0,0,0,NULL, G_UNKNOWN, G_UNKNOWN, /* PHGD, Course/Speed */
848848
strlen(tt_user[i].freq) > 0 ? atof(tt_user[i].freq) : G_UNKNOWN,
849849
strlen(tt_user[i].ctcss) > 0 ? atof(tt_user[i].ctcss) : G_UNKNOWN,
850-
G_UNKNOWN, /* CTCSS */
850+
'T', G_UNKNOWN, /* CTCSS */
851851
info_comment, object_info, sizeof(object_info));
852852

853853
strlcat (stemp, object_info, sizeof(stemp));

src/walk96.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ static void walk96 (int fix, double lat, double lon, float knots, float course,
156156
'/', '=',
157157
G_UNKNOWN, G_UNKNOWN, G_UNKNOWN, "", // PHGd
158158
(int)roundf(course), (int)roundf(knots),
159-
445.925, 0, 0,
159+
445.925, 'T', 0, 0,
160160
comment,
161161
info, sizeof(info));
162162

0 commit comments

Comments
 (0)