Skip to content

Commit fdf660a

Browse files
committed
New "-d d" command line option for APRStt debug.
1 parent 791982a commit fdf660a

File tree

4 files changed

+113
-23
lines changed

4 files changed

+113
-23
lines changed

man/direwolf.1

+2
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ m = Monitor heard station list.
122122
f = Packet filtering.
123123
.P
124124
x = FX.25 increase verbose level.
125+
.P
126+
d = APRStt (DTMF to APRS object conversion).
125127
.RE
126128
.RE
127129
.PD

src/aprs_tt.c

+96-17
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,17 @@ static int find_ttloc_match (char *e, char *xstr, char *ystr, char *zstr, char *
115115
static void check_result (void);
116116
#endif
117117

118+
static int tt_debug = 0;
119+
118120

119121
/*------------------------------------------------------------------
120122
*
121123
* Name: aprs_tt_init
122124
*
123125
* Purpose: Initialize the APRStt gateway at system startup time.
124126
*
125-
* Inputs: Configuration options gathered by config.c.
127+
* Inputs: P - Pointer to configuration options gathered by config.c.
128+
* debug - Debug printing control.
126129
*
127130
* Global out: Make our own local copy of the structure here.
128131
*
@@ -164,9 +167,10 @@ static struct ttloc_s test_config[] = {
164167
#endif
165168

166169

167-
void aprs_tt_init (struct tt_config_s *p)
170+
void aprs_tt_init (struct tt_config_s *p, int debug)
168171
{
169172
int c;
173+
tt_debug = debug;
170174

171175
#if TT_MAIN
172176
/* For unit testing. */
@@ -483,7 +487,19 @@ static int parse_fields (char *msg)
483487
//text_color_set(DW_COLOR_DEBUG);
484488
//dw_printf ("parse_fields (%s).\n", msg);
485489

486-
strlcpy (stemp, msg, sizeof(stemp));
490+
// Make a copy of msg because strtok corrupts the original.
491+
// While we are at it, remove any blanks.
492+
// This should not happen with DTMF reception but could happen
493+
// in manually crafted strings for testing.
494+
495+
int n = 0;
496+
for (char *m = msg; *m != '\0' && n < sizeof(stemp)-1; m++) {
497+
if (*m != ' ') {
498+
stemp[n++] = *m;
499+
}
500+
}
501+
stemp[n] = '\0';
502+
487503
e = strtok_r (stemp, "*#", &save);
488504
while (e != NULL) {
489505

@@ -551,7 +567,7 @@ static int parse_fields (char *msg)
551567
default:
552568

553569
text_color_set(DW_COLOR_ERROR);
554-
dw_printf ("Field does not start with A, B, C, or digit: \"%s\"\n", msg);
570+
dw_printf ("Field does not start with A, B, C, or digit: \"%s\"\n", e);
555571
return (TT_ERROR_D_MSG);
556572

557573
}
@@ -690,17 +706,15 @@ static int expand_macro (char *e)
690706
*
691707
* Inputs: e - An "entry" extracted from a complete
692708
* APRStt messsage.
693-
* In this case, it should start with "A".
709+
* In this case, it should start with "A" then a digit.
694710
*
695711
* Outputs: m_callsign
696712
*
697713
* m_symtab_or_overlay - Set to 0-9 or A-Z if specified.
698714
*
699-
* m_symbol_code - Always set to 'A'.
700-
* NO! This should be applied only if we
701-
* have the default value at this point.
702-
* The symbol might have been explicitly
703-
* set already and we don't want to overwrite that.
715+
* m_symbol_code - Always set to 'A' (Box, DTMF or RFID)
716+
* If you want a different symbol, use the new
717+
* object name format and separate symbol specification.
704718
*
705719
* Returns: 0 for success or one of the TT_ERROR_... codes.
706720
*
@@ -752,6 +766,11 @@ static int parse_callsign (char *e)
752766
int len;
753767
char tttemp[40], stemp[30];
754768

769+
if (tt_debug) {
770+
text_color_set(DW_COLOR_DEBUG);
771+
dw_printf ("APRStt parse callsign (starts with A then digit): \"%s\"\n", e);
772+
}
773+
755774
assert (*e == 'A');
756775

757776
len = strlen(e);
@@ -762,6 +781,10 @@ static int parse_callsign (char *e)
762781

763782
if (len == 4 && isdigit(e[1]) && isdigit(e[2]) && isdigit(e[3])) {
764783
strlcpy (m_callsign, e+1, sizeof(m_callsign));
784+
if (tt_debug) {
785+
text_color_set(DW_COLOR_DEBUG);
786+
dw_printf ("Special case, 3 digit tactical call: \"%s\"\n", m_callsign);
787+
}
765788
return (0);
766789
}
767790

@@ -779,7 +802,7 @@ static int parse_callsign (char *e)
779802
return (cs_err);
780803
}
781804

782-
strncpy (m_callsign, e+1, 3);
805+
memcpy (m_callsign, e+1, 3);
783806
m_callsign[3] = '\0';
784807

785808
if (len == 7) {
@@ -789,10 +812,20 @@ static int parse_callsign (char *e)
789812
tt_two_key_to_text (tttemp, 0, stemp);
790813
m_symbol_code = APRSTT_DEFAULT_SYMBOL;
791814
m_symtab_or_overlay = stemp[0];
815+
if (tt_debug) {
816+
text_color_set(DW_COLOR_DEBUG);
817+
dw_printf ("Three digit abbreviation1: callsign \"%s\", symbol code '%c (Box DTMF)', overlay '%c', checksum %c\n",
818+
m_callsign, m_symbol_code, m_symtab_or_overlay, e[len-1]);
819+
}
792820
}
793821
else {
794822
m_symbol_code = APRSTT_DEFAULT_SYMBOL;
795823
m_symtab_or_overlay = e[len-2];
824+
if (tt_debug) {
825+
text_color_set(DW_COLOR_DEBUG);
826+
dw_printf ("Three digit abbreviation2: callsign \"%s\", symbol code '%c' (Box DTMF), overlay '%c', checksum %c\n",
827+
m_callsign, m_symbol_code, m_symtab_or_overlay, e[len-1]);
828+
}
796829
}
797830
return (0);
798831
}
@@ -810,7 +843,7 @@ static int parse_callsign (char *e)
810843
}
811844

812845
if (isupper(e[len-2])) {
813-
strncpy (tttemp, e+1, len-4);
846+
memcpy (tttemp, e+1, len-4);
814847
tttemp[len-4] = '\0';
815848
tt_two_key_to_text (tttemp, 0, m_callsign);
816849

@@ -820,14 +853,24 @@ static int parse_callsign (char *e)
820853
tt_two_key_to_text (tttemp, 0, stemp);
821854
m_symbol_code = APRSTT_DEFAULT_SYMBOL;
822855
m_symtab_or_overlay = stemp[0];
856+
if (tt_debug) {
857+
text_color_set(DW_COLOR_DEBUG);
858+
dw_printf ("Callsign in two key format1: callsign \"%s\", symbol code '%c' (Box DTMF), overlay '%c', checksum %c\n",
859+
m_callsign, m_symbol_code, m_symtab_or_overlay, e[len-1]);
860+
}
823861
}
824862
else {
825-
strncpy (tttemp, e+1, len-3);
863+
memcpy (tttemp, e+1, len-3);
826864
tttemp[len-3] = '\0';
827865
tt_two_key_to_text (tttemp, 0, m_callsign);
828866

829867
m_symbol_code = APRSTT_DEFAULT_SYMBOL;
830868
m_symtab_or_overlay = e[len-2];
869+
if (tt_debug) {
870+
text_color_set(DW_COLOR_DEBUG);
871+
dw_printf ("Callsign in two key format2: callsign \"%s\", symbol code '%c' (Box DTMF), overlay '%c', checksum %c\n",
872+
m_callsign, m_symbol_code, m_symtab_or_overlay, e[len-1]);
873+
}
831874
}
832875
return (0);
833876
}
@@ -864,9 +907,11 @@ static int parse_callsign (char *e)
864907
static int parse_object_name (char *e)
865908
{
866909
int len;
867-
//int c_length;
868-
//char tttemp[40];
869-
//char stemp[30];
910+
911+
if (tt_debug) {
912+
text_color_set(DW_COLOR_DEBUG);
913+
dw_printf ("APRStt parse object name (starts with AA): \"%s\"\n", e);
914+
}
870915

871916
assert (e[0] == 'A');
872917
assert (e[1] == 'A');
@@ -882,6 +927,10 @@ static int parse_object_name (char *e)
882927
if (tt_two_key_to_text (e+2, 0, m_callsign) == 0) {
883928
m_callsign[9] = '\0'; /* truncate to 9 */
884929
m_ssid = 0; /* No ssid for object name */
930+
if (tt_debug) {
931+
text_color_set(DW_COLOR_DEBUG);
932+
dw_printf ("Object name in two key format: \"%s\"\n", m_callsign);
933+
}
885934
return (0);
886935
}
887936
}
@@ -935,6 +984,11 @@ static int parse_symbol (char *e)
935984
int nn;
936985
char stemp[10];
937986

987+
if (tt_debug) {
988+
text_color_set(DW_COLOR_DEBUG);
989+
dw_printf ("APRStt parse symbol (starts with AB): \"%s\"\n", e);
990+
}
991+
938992
assert (e[0] == 'A');
939993
assert (e[1] == 'B');
940994

@@ -959,12 +1013,22 @@ static int parse_symbol (char *e)
9591013
case '1':
9601014
m_symtab_or_overlay = '/';
9611015
m_symbol_code = 32 + nn;
1016+
if (tt_debug) {
1017+
text_color_set(DW_COLOR_DEBUG);
1018+
dw_printf ("symbol code '%c', primary symbol table '%c'\n",
1019+
m_symbol_code, m_symtab_or_overlay);
1020+
}
9621021
return (0);
9631022
break;
9641023

9651024
case '2':
9661025
m_symtab_or_overlay = '\\';
9671026
m_symbol_code = 32 + nn;
1027+
if (tt_debug) {
1028+
text_color_set(DW_COLOR_DEBUG);
1029+
dw_printf ("symbol code '%c', alternate symbol table '%c'\n",
1030+
m_symbol_code, m_symtab_or_overlay);
1031+
}
9681032
return (0);
9691033
break;
9701034

@@ -973,6 +1037,11 @@ static int parse_symbol (char *e)
9731037
if (tt_two_key_to_text (e+5, 0, stemp) == 0) {
9741038
m_symbol_code = 32 + nn;
9751039
m_symtab_or_overlay = stemp[0];
1040+
if (tt_debug) {
1041+
text_color_set(DW_COLOR_DEBUG);
1042+
dw_printf ("symbol code '%c', alternate symbol table with overlay '%c'\n",
1043+
m_symbol_code, m_symtab_or_overlay);
1044+
}
9761045
return (0);
9771046
}
9781047
}
@@ -1018,6 +1087,11 @@ static int parse_aprstt3_call (char *e)
10181087
assert (e[0] == 'A');
10191088
assert (e[1] == 'C');
10201089

1090+
if (tt_debug) {
1091+
text_color_set(DW_COLOR_DEBUG);
1092+
dw_printf ("APRStt parse QIKcom-2 / APRStt 3 ten digit call or five digit suffix (starts with AC): \"%s\"\n", e);
1093+
}
1094+
10211095
if (strlen(e) == 2+10) {
10221096
char call[12];
10231097

@@ -1125,6 +1199,11 @@ static int parse_location (char *e)
11251199
char mh[20];
11261200
char stemp[32];
11271201

1202+
if (tt_debug) {
1203+
text_color_set(DW_COLOR_DEBUG);
1204+
dw_printf ("APRStt parse location (starts with B): \"%s\"\n", e);
1205+
// TODO: more detail later...
1206+
}
11281207

11291208
assert (*e == 'B');
11301209

@@ -1985,7 +2064,7 @@ static void check_result (void)
19852064

19862065
int main (int argc, char *argv[])
19872066
{
1988-
aprs_tt_init (NULL);
2067+
aprs_tt_init (NULL, 0);
19892068

19902069
error_count = 0;
19912070

src/aprs_tt.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ struct tt_config_s {
165165

166166

167167

168-
void aprs_tt_init (struct tt_config_s *p_config);
168+
void aprs_tt_init (struct tt_config_s *p_config, int debug);
169169

170170
void aprs_tt_button (int chan, char button);
171171

src/direwolf.c

+14-5
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ int main (int argc, char *argv[])
223223
int d_h_opt = 0; /* "-d h" option for hamlib debugging. Repeat for more detail */
224224
#endif
225225
int d_x_opt = 1; /* "-d x" option for FX.25. Default minimal. Repeat for more detail. -qx to silence. */
226+
int aprstt_debug = 0; /* "-d d" option for APRStt (think Dtmf) debug. */
226227

227228
int E_tx_opt = 0; /* "-E n" Error rate % for clobbering trasmit frames. */
228229
int E_rx_opt = 0; /* "-E Rn" Error rate % for clobbering receive frames. */
@@ -566,6 +567,7 @@ int main (int argc, char *argv[])
566567
case 'h': d_h_opt++; break; // Hamlib verbose level.
567568
#endif
568569
case 'x': d_x_opt++; break; // FX.25
570+
case 'd': aprstt_debug++; break; // APRStt (mnemonic Dtmf)
569571
default: break;
570572
}
571573
}
@@ -758,7 +760,7 @@ int main (int argc, char *argv[])
758760
// Will make more precise in afsk demod init.
759761
audio_config.achan[0].mark_freq = 2083; // Actually 2083.3 - logic 1.
760762
audio_config.achan[0].space_freq = 1563; // Actually 1562.5 - logic 0.
761-
strlcpy (audio_config.achan[0].profiles, "D", sizeof(audio_config.achan[0].profiles));
763+
strlcpy (audio_config.achan[0].profiles, "A", sizeof(audio_config.achan[0].profiles));
762764
}
763765
else {
764766
audio_config.achan[0].modem_type = MODEM_SCRAMBLE;
@@ -883,7 +885,7 @@ int main (int argc, char *argv[])
883885
* Initialize the touch tone decoder & APRStt gateway.
884886
*/
885887
dtmf_init (&audio_config, audio_amplitude);
886-
aprs_tt_init (&tt_config);
888+
aprs_tt_init (&tt_config, aprstt_debug);
887889
tt_user_init (&audio_config, &tt_config);
888890

889891
/*
@@ -1345,18 +1347,24 @@ void app_process_rec_packet (int chan, int subchan, int slice, packet_t pp, alev
13451347
}
13461348

13471349
/*
1348-
* If it came from DTMF decoder, send it to APRStt gateway.
1350+
* If it came from DTMF decoder (subchan == -1), send it to APRStt gateway.
13491351
* Otherwise, it is a candidate for IGate and digipeater.
13501352
*
1351-
* TODO: It would be useful to have some way to simulate touch tone
1353+
* It is also useful to have some way to simulate touch tone
13521354
* sequences with BEACON sendto=R0 for testing.
13531355
*/
13541356

1355-
if (subchan == -1) {
1357+
if (subchan == -1) { // from DTMF decoder
13561358
if (tt_config.gateway_enabled && info_len >= 2) {
13571359
aprs_tt_sequence (chan, (char*)(pinfo+1));
13581360
}
13591361
}
1362+
else if (*pinfo == 't' && info_len >= 2 && tt_config.gateway_enabled) {
1363+
// For testing.
1364+
// Would be nice to verify it was generated locally,
1365+
// not received over the air.
1366+
aprs_tt_sequence (chan, (char*)(pinfo+1));
1367+
}
13601368
else {
13611369

13621370
/* Send to Internet server if option is enabled. */
@@ -1487,6 +1495,7 @@ static void usage (char **argv)
14871495
dw_printf (" h h = hamlib increase verbose level.\n");
14881496
#endif
14891497
dw_printf (" x x = FX.25 increase verbose level.\n");
1498+
dw_printf (" d d = APRStt (DTMF to APRS object translation).\n");
14901499
dw_printf (" -q Quiet (suppress output) options:\n");
14911500
dw_printf (" h h = Heard line with the audio level.\n");
14921501
dw_printf (" d d = Decoding of APRS packets.\n");

0 commit comments

Comments
 (0)