Skip to content

Commit dfc063f

Browse files
committed
Minor clarifications.
1 parent 80bbf5a commit dfc063f

File tree

2 files changed

+22
-15
lines changed

2 files changed

+22
-15
lines changed

src/decode_aprs.c

+19-13
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
// along with this program. If not, see <http://www.gnu.org/licenses/>.
1818
//
1919

20+
// TODO: Better error messages for examples here: http://lists.tapr.org/pipermail/aprssig_lists.tapr.org/2023-July/date.html
2021

2122
/*------------------------------------------------------------------
2223
*
@@ -339,7 +340,7 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, char *third_party_sr
339340
else
340341
{
341342
aprs_raw_nmea (A, pinfo, info_len);
342-
A->g_packet_type = packet_type_position;
343+
A->g_packet_type = packet_type_position;
343344
}
344345
break;
345346

@@ -382,7 +383,7 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, char *third_party_sr
382383
break;
383384

384385
case message_subtype_bulletin:
385-
default:
386+
default:
386387
break;
387388

388389
case message_subtype_telem_parm:
@@ -549,14 +550,16 @@ void decode_aprs_print (decode_aprs_t *A) {
549550
//dw_printf ("DEBUG decode_aprs_print stemp3=%s mfr=%s\n", stemp, A->g_mfr);
550551

551552
if (strlen(A->g_mfr) > 0) {
552-
if (strcmp(A->g_dest, "APRS") == 0 || strcmp(A->g_dest, "BEACON") == 0) {
553+
if (strcmp(A->g_dest, "APRS") == 0 ||
554+
strcmp(A->g_dest, "BEACON") == 0 ||
555+
strcmp(A->g_dest, "ID") == 0) {
553556
strlcat (stemp, "\nUse of \"", sizeof(stemp));
554557
strlcat (stemp, A->g_dest, sizeof(stemp));
555558
strlcat (stemp, "\" in the destination field is obsolete.", sizeof(stemp));
556559
strlcat (stemp, " You can help to improve the quality of APRS signals.", sizeof(stemp));
557560
strlcat (stemp, "\nTell the sender (", sizeof(stemp));
558561
strlcat (stemp, A->g_src, sizeof(stemp));
559-
strlcat (stemp, ") to use the proper product code from", sizeof(stemp));
562+
strlcat (stemp, ") to use the proper product identifier from", sizeof(stemp));
560563
strlcat (stemp, " http://www.aprs.org/aprs11/tocalls.txt", sizeof(stemp));
561564
}
562565
else {
@@ -582,7 +585,7 @@ void decode_aprs_print (decode_aprs_t *A) {
582585
/* http://eng.usna.navy.mil/~bruninga/aprs/aprs11.html */
583586
/* "The Antenna Gain in the PHG format on page 28 is in dBi." */
584587

585-
snprintf (phg, sizeof(phg), ", %d W height=%d %ddBi %s", A->g_power, A->g_height, A->g_gain, A->g_directivity);
588+
snprintf (phg, sizeof(phg), ", %d W height(HAAT)=%dft=%.0fm %ddBi %s", A->g_power, A->g_height, DW_FEET_TO_METERS(A->g_height), A->g_gain, A->g_directivity);
586589
strlcat (stemp, phg, sizeof(stemp));
587590
}
588591

@@ -1147,7 +1150,7 @@ static void aprs_raw_nmea (decode_aprs_t *A, unsigned char *info, int ilen)
11471150
*
11481151
* Description:
11491152
*
1150-
* AX.25 Destination Address Field -
1153+
* AX.25 Destination Address Field -
11511154
*
11521155
* The 6-byte Destination Address field contains
11531156
* the following encoded information:
@@ -1213,7 +1216,7 @@ static void aprs_raw_nmea (decode_aprs_t *A, unsigned char *info, int ilen)
12131216
* It is three base-91 characters followed by "}".
12141217
* Examples: "4T} "4T} ]"4T}
12151218
*
1216-
* We can also have frequency specification -- http://www.aprs.org/info/freqspec.tx
1219+
* We can also have frequency specification -- http://www.aprs.org/info/freqspec.txt
12171220
*
12181221
* Warning: Some Kenwood radios add CR at the end, in apparent violation of the spec.
12191222
* Watch out so it doesn't get included when looking for equipment type suffix.
@@ -1247,7 +1250,7 @@ static void aprs_raw_nmea (decode_aprs_t *A, unsigned char *info, int ilen)
12471250
*
12481251
* ` cP# l!F k/ ' "7H} |!%&-']| !w`&! |3
12491252
* mic-e long. cs sym prefix alt base91telemetry DAO suffix
1250-
* TinyTrack3
1253+
* TinyTrack3
12511254
*---------------
12521255
*
12531256
* W1STJ-3>T2UR4X,WA1PLE-4,WIDE1*,WIDE2-1:`c@&l#.-/`"5,}146.685MHz T100 -060 146.520 Simplex or Voice Alert_%<0x0d>
@@ -1912,7 +1915,6 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
19121915
strlcpy (A->g_comment, p->message, sizeof(A->g_comment));
19131916
}
19141917

1915-
#warning = double check.
19161918

19171919
// Weather bulletins have addressee starting with NWS, SKY, CWA, or BOM.
19181920
// The protocol spec and http://www.aprs.org/APRS-docs/WX.TXT state that
@@ -1994,10 +1996,12 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
19941996
text_color_set(DW_COLOR_ERROR);
19951997
dw_printf("ERROR: \"%s\" must be lower case \"ack\"\n", p->message);
19961998
}
1997-
strlcpy (A->g_message_number, p->message + 3, sizeof(A->g_message_number));
1998-
if (strlen(A->g_message_number) == 0) {
1999+
else {
2000+
strlcpy (A->g_message_number, p->message + 3, sizeof(A->g_message_number));
2001+
if (strlen(A->g_message_number) == 0) {
19992002
text_color_set(DW_COLOR_ERROR);
20002003
dw_printf("ERROR: Message number is missing after \"ack\".\n");
2004+
}
20012005
}
20022006

20032007
// Xastir puts a carriage return on the end.
@@ -2018,10 +2022,12 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
20182022
text_color_set(DW_COLOR_ERROR);
20192023
dw_printf("ERROR: \"%s\" must be lower case \"rej\"\n", p->message);
20202024
}
2021-
strlcpy (A->g_message_number, p->message + 3, sizeof(A->g_message_number));
2022-
if (strlen(A->g_message_number) == 0) {
2025+
else {
2026+
strlcpy (A->g_message_number, p->message + 3, sizeof(A->g_message_number));
2027+
if (strlen(A->g_message_number) == 0) {
20232028
text_color_set(DW_COLOR_ERROR);
20242029
dw_printf("ERROR: Message number is missing after \"rej\".\n");
2030+
}
20252031
}
20262032

20272033
// Xastir puts a carriage return on the end.

src/decode_aprs.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,17 @@ typedef struct decode_aprs_s {
111111
int g_power; /* Transmitter power in watts. */
112112

113113
int g_height; /* Antenna height above average terrain, feet. */
114+
// TODO: rename to g_height_ft
114115

115-
int g_gain; /* Antenna gain in dB. */
116+
int g_gain; /* Antenna gain in dBi. */
116117

117118
char g_directivity[12]; /* Direction of max signal strength */
118119

119120
float g_range; /* Precomputed radio range in miles. */
120121

121122
float g_altitude_ft; /* Feet above median sea level. */
122123
/* I used feet here because the APRS specification */
123-
/* has units of feet for alititude. Meters would be */
124+
/* has units of feet for altitude. Meters would be */
124125
/* more natural to the other 96% of the world. */
125126

126127
char g_mfr[80]; /* Manufacturer or application. */

0 commit comments

Comments
 (0)