17
17
// along with this program. If not, see <http://www.gnu.org/licenses/>.
18
18
//
19
19
20
+ // TODO: Better error messages for examples here: http://lists.tapr.org/pipermail/aprssig_lists.tapr.org/2023-July/date.html
20
21
21
22
/*------------------------------------------------------------------
22
23
*
@@ -339,7 +340,7 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, char *third_party_sr
339
340
else
340
341
{
341
342
aprs_raw_nmea (A , pinfo , info_len );
342
- A -> g_packet_type = packet_type_position ;
343
+ A -> g_packet_type = packet_type_position ;
343
344
}
344
345
break ;
345
346
@@ -382,7 +383,7 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, char *third_party_sr
382
383
break ;
383
384
384
385
case message_subtype_bulletin :
385
- default :
386
+ default :
386
387
break ;
387
388
388
389
case message_subtype_telem_parm :
@@ -549,14 +550,16 @@ void decode_aprs_print (decode_aprs_t *A) {
549
550
//dw_printf ("DEBUG decode_aprs_print stemp3=%s mfr=%s\n", stemp, A->g_mfr);
550
551
551
552
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 ) {
553
556
strlcat (stemp , "\nUse of \"" , sizeof (stemp ));
554
557
strlcat (stemp , A -> g_dest , sizeof (stemp ));
555
558
strlcat (stemp , "\" in the destination field is obsolete." , sizeof (stemp ));
556
559
strlcat (stemp , " You can help to improve the quality of APRS signals." , sizeof (stemp ));
557
560
strlcat (stemp , "\nTell the sender (" , sizeof (stemp ));
558
561
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 ));
560
563
strlcat (stemp , " http://www.aprs.org/aprs11/tocalls.txt" , sizeof (stemp ));
561
564
}
562
565
else {
@@ -582,7 +585,7 @@ void decode_aprs_print (decode_aprs_t *A) {
582
585
/* http://eng.usna.navy.mil/~bruninga/aprs/aprs11.html */
583
586
/* "The Antenna Gain in the PHG format on page 28 is in dBi." */
584
587
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 );
586
589
strlcat (stemp , phg , sizeof (stemp ));
587
590
}
588
591
@@ -1147,7 +1150,7 @@ static void aprs_raw_nmea (decode_aprs_t *A, unsigned char *info, int ilen)
1147
1150
*
1148
1151
* Description:
1149
1152
*
1150
- * AX.25 Destination Address Field -
1153
+ * AX.25 Destination Address Field -
1151
1154
*
1152
1155
* The 6-byte Destination Address field contains
1153
1156
* the following encoded information:
@@ -1213,7 +1216,7 @@ static void aprs_raw_nmea (decode_aprs_t *A, unsigned char *info, int ilen)
1213
1216
* It is three base-91 characters followed by "}".
1214
1217
* Examples: "4T} "4T} ]"4T}
1215
1218
*
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
1217
1220
*
1218
1221
* Warning: Some Kenwood radios add CR at the end, in apparent violation of the spec.
1219
1222
* 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)
1247
1250
*
1248
1251
* ` cP# l!F k/ ' "7H} |!%&-']| !w`&! |3
1249
1252
* mic-e long. cs sym prefix alt base91telemetry DAO suffix
1250
- * TinyTrack3
1253
+ * TinyTrack3
1251
1254
*---------------
1252
1255
*
1253
1256
* 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
1912
1915
strlcpy (A -> g_comment , p -> message , sizeof (A -> g_comment ));
1913
1916
}
1914
1917
1915
- #warning = double check.
1916
1918
1917
1919
// Weather bulletins have addressee starting with NWS, SKY, CWA, or BOM.
1918
1920
// 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
1994
1996
text_color_set (DW_COLOR_ERROR );
1995
1997
dw_printf ("ERROR: \"%s\" must be lower case \"ack\"\n" , p -> message );
1996
1998
}
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 ) {
1999
2002
text_color_set (DW_COLOR_ERROR );
2000
2003
dw_printf ("ERROR: Message number is missing after \"ack\".\n" );
2004
+ }
2001
2005
}
2002
2006
2003
2007
// 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
2018
2022
text_color_set (DW_COLOR_ERROR );
2019
2023
dw_printf ("ERROR: \"%s\" must be lower case \"rej\"\n" , p -> message );
2020
2024
}
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 ) {
2023
2028
text_color_set (DW_COLOR_ERROR );
2024
2029
dw_printf ("ERROR: Message number is missing after \"rej\".\n" );
2030
+ }
2025
2031
}
2026
2032
2027
2033
// Xastir puts a carriage return on the end.
0 commit comments