Skip to content

Commit d653a53

Browse files
committed
Fix bug: "INTERNAL ERROR: dlq_append NULL packet pointer." when using PASSALL.
Added APRStt position ambiguity option.
1 parent b104f09 commit d653a53

16 files changed

+342
-38
lines changed

CHANGES.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33

44
----------
55

6-
## Version 1.3 -- Development snapshot H -- November 2015 ##
6+
## Version 1.3 -- Development snapshot H -- December 2015 ##
77

88
### New Feature: ###
99

1010
- New experimental demodulator. More details later.
1111

12+
### Bugs Fixed: ###
13+
14+
- "INTERNAL ERROR: dlq_append NULL packet pointer." when using PASSALL.
15+
1216

1317
----------
1418

aprs_tt.c

+24-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
//
32
// This file is part of Dire Wolf, an amateur radio packet TNC.
43
//
@@ -322,6 +321,7 @@ static char m_symbol_code; // Default 'A'
322321
static char m_loc_text[24];
323322
static double m_longitude; // Set to G_UNKNOWN if not defined.
324323
static double m_latitude; // Set to G_UNKNOWN if not defined.
324+
static int m_ambiguity;
325325
static char m_comment[200];
326326
static char m_freq[12];
327327
static char m_mic_e;
@@ -354,8 +354,9 @@ void aprs_tt_sequence (int chan, char *msg)
354354
m_symtab_or_overlay = '\\';
355355
m_symbol_code = 'A';
356356
strlcpy (m_loc_text, "", sizeof(m_loc_text));
357-
m_longitude = G_UNKNOWN;
358-
m_latitude = G_UNKNOWN;
357+
m_longitude = G_UNKNOWN;
358+
m_latitude = G_UNKNOWN;
359+
m_ambiguity = 0;
359360
strlcpy (m_comment, "", sizeof(m_comment));
360361
strlcpy (m_freq, "", sizeof(m_freq));
361362
m_mic_e = ' ';
@@ -384,7 +385,7 @@ void aprs_tt_sequence (int chan, char *msg)
384385
if (err == 0) {
385386

386387
err = tt_user_heard (m_callsign, m_ssid, m_symtab_or_overlay, m_symbol_code,
387-
m_loc_text, m_latitude, m_longitude,
388+
m_loc_text, m_latitude, m_longitude, m_ambiguity,
388389
m_freq, m_comment, m_mic_e, m_dao);
389390
}
390391

@@ -1254,6 +1255,18 @@ static int parse_location (char *e)
12541255
}
12551256
break;
12561257

1258+
case TTLOC_AMBIG:
1259+
1260+
if (strlen(xstr) != 1) {
1261+
text_color_set(DW_COLOR_ERROR);
1262+
dw_printf ("Expected 1 digits for the position ambiguity.\n");
1263+
return (TT_ERROR_INVALID_LOC);
1264+
}
1265+
1266+
m_ambiguity = atoi(xstr);
1267+
1268+
break;
1269+
12571270

12581271
default:
12591272
assert (0);
@@ -1451,6 +1464,8 @@ static int find_ttloc_match (char *e, char *xstr, char *ystr, char *zstr, char *
14511464
*
14521465
* Cttt...tttt - General comment in Multi-press encoding.
14531466
*
1467+
* CAttt...tttt - New enhanced comment format that can handle all ASCII characters.
1468+
*
14541469
*----------------------------------------------------------------*/
14551470

14561471
static int parse_comment (char *e)
@@ -1461,6 +1476,11 @@ static int parse_comment (char *e)
14611476

14621477
len = strlen(e);
14631478

1479+
if (e[1] == 'A') {
1480+
tt_ascii2d_to_text (e+2, 0, m_comment);
1481+
return (0);
1482+
}
1483+
14641484
if (len == 2 && isdigit(e[1])) {
14651485
m_mic_e = e[1];
14661486
return (0);

aprs_tt.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
struct ttloc_s {
17-
enum { TTLOC_POINT, TTLOC_VECTOR, TTLOC_GRID, TTLOC_UTM, TTLOC_MGRS, TTLOC_USNG, TTLOC_MACRO, TTLOC_MHEAD, TTLOC_SATSQ } type;
17+
enum { TTLOC_POINT, TTLOC_VECTOR, TTLOC_GRID, TTLOC_UTM, TTLOC_MGRS, TTLOC_USNG, TTLOC_MACRO, TTLOC_MHEAD, TTLOC_SATSQ, TTLOC_AMBIG } type;
1818

1919
char pattern[20]; /* e.g. B998, B5bbbdddd, B2xxyy, Byyyxxx, BAxxxx */
2020
/* For macros, it should be all fixed digits, */
@@ -61,6 +61,7 @@ struct ttloc_s {
6161
struct {
6262
char *definition;
6363
} macro;
64+
6465
};
6566
};
6667

beacon.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
751751
case BEACON_POSITION:
752752

753753
encode_position (g_misc_config_p->beacon[j].messaging, g_misc_config_p->beacon[j].compress,
754-
g_misc_config_p->beacon[j].lat, g_misc_config_p->beacon[j].lon,
754+
g_misc_config_p->beacon[j].lat, g_misc_config_p->beacon[j].lon, 0,
755755
(int)roundf(DW_METERS_TO_FEET(g_misc_config_p->beacon[j].alt_m)),
756756
g_misc_config_p->beacon[j].symtab, g_misc_config_p->beacon[j].symbol,
757757
g_misc_config_p->beacon[j].power, g_misc_config_p->beacon[j].height, g_misc_config_p->beacon[j].gain, g_misc_config_p->beacon[j].dir,
@@ -764,7 +764,7 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
764764

765765
case BEACON_OBJECT:
766766

767-
encode_object (g_misc_config_p->beacon[j].objname, g_misc_config_p->beacon[j].compress, 0, g_misc_config_p->beacon[j].lat, g_misc_config_p->beacon[j].lon,
767+
encode_object (g_misc_config_p->beacon[j].objname, g_misc_config_p->beacon[j].compress, 0, g_misc_config_p->beacon[j].lat, g_misc_config_p->beacon[j].lon, 0,
768768
g_misc_config_p->beacon[j].symtab, g_misc_config_p->beacon[j].symbol,
769769
g_misc_config_p->beacon[j].power, g_misc_config_p->beacon[j].height, g_misc_config_p->beacon[j].gain, g_misc_config_p->beacon[j].dir,
770770
G_UNKNOWN, G_UNKNOWN, /* course, speed */
@@ -795,7 +795,7 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
795795
}
796796

797797
encode_position (g_misc_config_p->beacon[j].messaging, g_misc_config_p->beacon[j].compress,
798-
gpsinfo->dlat, gpsinfo->dlon, my_alt_ft,
798+
gpsinfo->dlat, gpsinfo->dlon, 0, my_alt_ft,
799799
g_misc_config_p->beacon[j].symtab, g_misc_config_p->beacon[j].symbol,
800800
g_misc_config_p->beacon[j].power, g_misc_config_p->beacon[j].height, g_misc_config_p->beacon[j].gain, g_misc_config_p->beacon[j].dir,
801801
coarse, (int)roundf(gpsinfo->speed_knots),

config.c

+111
Original file line numberDiff line numberDiff line change
@@ -1428,6 +1428,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
14281428
}
14291429
else if (strcasecmp(t, "PASSALL") == 0) {
14301430
p_audio_config->achan[channel].passall = 1;
1431+
text_color_set(DW_COLOR_ERROR);
1432+
dw_printf ("Line %d: There is an old saying, \"Be careful what you ask for because you might get it.\"\n", line);
1433+
dw_printf ("The PASSALL option means allow all frames even when they are invalid.\n");
1434+
dw_printf ("You are asking to receive random trash and you WILL get your wish.\n");
1435+
dw_printf ("Don't complain when you see all sorts of random garbage. That's what you asked for.\n");
14311436
}
14321437
else {
14331438
text_color_set(DW_COLOR_ERROR);
@@ -2823,6 +2828,81 @@ void config_init (char *fname, struct audio_s *p_audio_config,
28232828
//}
28242829
}
28252830

2831+
/*
2832+
* TTAMBIG - Define pattern to be used for Object Location Ambiguity.
2833+
*
2834+
* TTAMBIG pattern
2835+
*
2836+
* Pattern would be B[0-9A-D]x
2837+
*
2838+
* Must have exactly one x.
2839+
*/
2840+
2841+
else if (strcasecmp(t, "TTAMBIG") == 0) {
2842+
2843+
// TODO1.3: TTAMBIG To be continued...
2844+
2845+
struct ttloc_s *tl;
2846+
int j;
2847+
2848+
assert (p_tt_config->ttloc_size >= 2);
2849+
assert (p_tt_config->ttloc_len >= 0 && p_tt_config->ttloc_len <= p_tt_config->ttloc_size);
2850+
2851+
/* Allocate new space, but first, if already full, make larger. */
2852+
if (p_tt_config->ttloc_len == p_tt_config->ttloc_size) {
2853+
p_tt_config->ttloc_size += p_tt_config->ttloc_size / 2;
2854+
p_tt_config->ttloc_ptr = realloc (p_tt_config->ttloc_ptr, sizeof(struct ttloc_s) * p_tt_config->ttloc_size);
2855+
}
2856+
p_tt_config->ttloc_len++;
2857+
assert (p_tt_config->ttloc_len > 0 && p_tt_config->ttloc_len <= p_tt_config->ttloc_size);
2858+
2859+
tl = &(p_tt_config->ttloc_ptr[p_tt_config->ttloc_len-1]);
2860+
tl->type = TTLOC_AMBIG;
2861+
strlcpy(tl->pattern, "", sizeof(tl->pattern));
2862+
2863+
/* Pattern: B, optional additional button, exactly x for matching */
2864+
2865+
t = split(NULL,0);
2866+
if (t == NULL) {
2867+
text_color_set(DW_COLOR_ERROR);
2868+
dw_printf ("Line %d: Missing pattern for TTAMBIG command.\n", line);
2869+
p_tt_config->ttloc_len--;
2870+
continue;
2871+
}
2872+
strlcpy (tl->pattern, t, sizeof(tl->pattern));
2873+
2874+
if (t[0] != 'B') {
2875+
text_color_set(DW_COLOR_ERROR);
2876+
dw_printf ("Line %d: TTAMBIG pattern must begin with upper case 'B'.\n", line);
2877+
p_tt_config->ttloc_len--;
2878+
continue;
2879+
}
2880+
2881+
/* Optionally one of 0-9ABCD */
2882+
2883+
if (strchr("ABCD", t[1]) != NULL || isdigit(t[1])) {
2884+
j = 2;
2885+
}
2886+
else {
2887+
j = 1;
2888+
}
2889+
2890+
if (strcmp(t+j, "x") != 0) {
2891+
text_color_set(DW_COLOR_ERROR);
2892+
dw_printf ("Line %d: TTAMBIG pattern must end with exactly one x in lower case.\n", line);
2893+
p_tt_config->ttloc_len--;
2894+
continue;
2895+
}
2896+
2897+
/* temp debugging */
2898+
2899+
//for (j=0; j<p_tt_config->ttloc_len; j++) {
2900+
// dw_printf ("debug ttloc %d/%d %s\n", j, p_tt_config->ttloc_size,
2901+
// p_tt_config->ttloc_ptr[j].pattern);
2902+
//}
2903+
}
2904+
2905+
28262906
/*
28272907
* TTMACRO - Define compact message format with full expansion
28282908
*
@@ -3034,6 +3114,37 @@ void config_init (char *fname, struct audio_s *p_audio_config,
30343114
}
30353115
}
30363116

3117+
else if (strncmp(pi, "CA{", 3) == 0) {
3118+
3119+
// Convert to enhanced comment that can contain any ASCII character.
3120+
3121+
pi += 3;
3122+
ps = stemp;
3123+
while (*pi != '}' && *pi != '*' && *pi != '\0') {
3124+
*ps++ = *pi++;
3125+
}
3126+
if (*pi == '}') {
3127+
*ps = '\0';
3128+
if (tt_text_to_ascii2d (stemp, 0, ttemp) == 0) {
3129+
//text_color_set(DW_COLOR_DEBUG);
3130+
//dw_printf ("DEBUG Line %d: CA{%s} -> CA%s\n", line, stemp, ttemp);
3131+
strlcat (otemp, "CA", sizeof(otemp));
3132+
strlcat (otemp, ttemp, sizeof(otemp));
3133+
}
3134+
else {
3135+
text_color_set(DW_COLOR_ERROR);
3136+
dw_printf ("Line %d: CA{%s} could not be converted to tones for enhanced comment.\n", line, stemp);
3137+
tt_error++;
3138+
}
3139+
}
3140+
else {
3141+
text_color_set(DW_COLOR_ERROR);
3142+
dw_printf ("Line %d: CA{... is missing matching } in TTMACRO definition.\n", line);
3143+
tt_error++;
3144+
}
3145+
}
3146+
3147+
30373148
else if (strchr("0123456789ABCD*#xyz", *pi) != NULL) {
30383149
t2[0] = *pi;
30393150
strlcat (otemp, t2, sizeof(otemp));

dlq.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ void dlq_append (dlq_type_t type, int chan, int subchan, int slice, packet_t pp,
254254
assert (chan >= 0 && chan < MAX_CHANS);
255255

256256
if (pp == NULL) {
257-
text_color_set(DW_COLOR_DEBUG);
257+
text_color_set(DW_COLOR_ERROR);
258258
dw_printf ("INTERNAL ERROR: dlq_append NULL packet pointer. Please report this!\n");
259259
return;
260260
}

doc/APRStt-Implementation-Notes.pdf

3.45 KB
Binary file not shown.

doc/User-Guide.pdf

3.73 KB
Binary file not shown.

0 commit comments

Comments
 (0)