@@ -174,10 +174,10 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, int third_party)
174
174
A -> g_quiet = quiet ;
175
175
176
176
if (isprint (* pinfo )) {
177
- snprintf (A -> g_data_type_desc , sizeof (A -> g_data_type_desc ), "Unknown APRS Data Type Indicator \"%c\"" , * pinfo );
177
+ snprintf (A -> g_data_type_desc , sizeof (A -> g_data_type_desc ), "ERROR!!! Unknown APRS Data Type Indicator \"%c\"" , * pinfo );
178
178
}
179
179
else {
180
- snprintf (A -> g_data_type_desc , sizeof (A -> g_data_type_desc ), "ERROR!!! Unknown APRS Data Type Indicator: unprintable 0x%02x" , * pinfo );
180
+ snprintf (A -> g_data_type_desc , sizeof (A -> g_data_type_desc ), "ERROR!!! Unknown APRS Data Type Indicator: unprintable 0x%02x" , * pinfo );
181
181
}
182
182
183
183
A -> g_symbol_table = '/' ; /* Default to primary table. */
@@ -303,7 +303,7 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, int third_party)
303
303
304
304
if (strncmp ((char * )pinfo , "!!" , 2 ) == 0 )
305
305
{
306
- aprs_ultimeter (A , (char * )pinfo , info_len );
306
+ aprs_ultimeter (A , (char * )pinfo , info_len ); // TODO: produce obsolete error.
307
307
}
308
308
else
309
309
{
@@ -312,15 +312,15 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, int third_party)
312
312
break ;
313
313
314
314
315
- //case '#': /* Peet Bros U-II Weather station */
315
+ //case '#': /* Peet Bros U-II Weather station */ // TODO: produce obsolete error.
316
316
//case '*': /* Peet Bros U-II Weather station */
317
317
//break;
318
318
319
319
case '$' : /* Raw GPS data or Ultimeter 2000 */
320
320
321
321
if (strncmp ((char * )pinfo , "$ULTW" , 5 ) == 0 )
322
322
{
323
- aprs_ultimeter (A , (char * )pinfo , info_len );
323
+ aprs_ultimeter (A , (char * )pinfo , info_len ); // TODO: produce obsolete error.
324
324
}
325
325
else
326
326
{
@@ -536,7 +536,13 @@ void decode_aprs_print (decode_aprs_t *A) {
536
536
snprintf (rng , sizeof (rng ), ", range=%.1f" , A -> g_range );
537
537
strlcat (stemp , rng , sizeof (stemp ));
538
538
}
539
- text_color_set (DW_COLOR_DECODED );
539
+
540
+ if (strncmp (stemp , "ERROR" , 5 ) == 0 ) {
541
+ text_color_set (DW_COLOR_ERROR );
542
+ }
543
+ else {
544
+ text_color_set (DW_COLOR_DECODED );
545
+ }
540
546
dw_printf ("%s\n" , stemp );
541
547
542
548
/*
@@ -556,7 +562,6 @@ void decode_aprs_print (decode_aprs_t *A) {
556
562
* Any example was checked for each hemihemisphere using
557
563
* http://www.amsat.org/cgi-bin/gridconv
558
564
*/
559
- // FIXME soften language about upper case.
560
565
561
566
if (strlen (A -> g_maidenhead ) > 0 ) {
562
567
@@ -1565,7 +1570,7 @@ static void aprs_mic_e (decode_aprs_t *A, packet_t pp, unsigned char *info, int
1565
1570
* Purpose: Decode "Message Format."
1566
1571
* The word message is used loosely all over the place, but it has a very specific meaning here.
1567
1572
*
1568
- * Inputs: info - Pointer to Information field.
1573
+ * Inputs: info - Pointer to Information field. Be carefull not to modify it here!
1569
1574
* ilen - Information field length.
1570
1575
* quiet - suppress error messages.
1571
1576
*
@@ -1609,7 +1614,7 @@ static void aprs_mic_e (decode_aprs_t *A, packet_t pp, unsigned char *info, int
1609
1614
*
1610
1615
*------------------------------------------------------------------*/
1611
1616
1612
- static void aprs_message (decode_aprs_t * A , unsigned char * info , int ilen , int quiet )
1617
+ static void aprs_message (decode_aprs_t * A , unsigned char * info , int ilen , int quiet )
1613
1618
{
1614
1619
1615
1620
struct aprs_message_s {
@@ -1619,7 +1624,7 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
1619
1624
char message [256 - 1 - 9 - 1 ]; /* Officially up to 67 characters for message text. */
1620
1625
/* Relaxing seemingly arbitrary restriction here; it doesn't need to fit on a punched card. */
1621
1626
/* Wouldn't surprise me if others did not pay attention to the limit. */
1622
- /* Optional { followed by 1-5 alphanumeric characters for message number */
1627
+ /* Optional '{' followed by 1-5 alphanumeric characters for message number */
1623
1628
1624
1629
/* If the first character is '?' it is a Directed Station Query. */
1625
1630
} * p ;
@@ -1751,6 +1756,16 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
1751
1756
text_color_set (DW_COLOR_ERROR );
1752
1757
dw_printf ("ERROR: Message number is missing after \"ack\".\n" );
1753
1758
}
1759
+
1760
+ // Xastir puts a carriage return on the end.
1761
+ char * p = strchr (A -> g_message_number , '\r' );
1762
+ if (p != NULL ) {
1763
+ text_color_set (DW_COLOR_ERROR );
1764
+ dw_printf ("The APRS protocol specification says nothing about a possible carriage return after the\n" );
1765
+ dw_printf ("message id. Adding CR might prevent proper interoperability with with other applications.\n" );
1766
+ * p = '\0' ;
1767
+ }
1768
+
1754
1769
if (strlen (A -> g_message_number ) >= 3 && A -> g_message_number [2 ] == '}' ) A -> g_message_number [2 ] = '\0' ;
1755
1770
snprintf (A -> g_data_type_desc , sizeof (A -> g_data_type_desc ), "\"%s\" ACKnowledged message number \"%s\" from \"%s\"" , A -> g_src , A -> g_message_number , addressee );
1756
1771
A -> g_message_subtype = message_subtype_ack ;
@@ -1765,6 +1780,16 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
1765
1780
text_color_set (DW_COLOR_ERROR );
1766
1781
dw_printf ("ERROR: Message number is missing after \"rej\".\n" );
1767
1782
}
1783
+
1784
+ // Xastir puts a carriage return on the end.
1785
+ char * p = strchr (A -> g_message_number , '\r' );
1786
+ if (p != NULL ) {
1787
+ text_color_set (DW_COLOR_ERROR );
1788
+ dw_printf ("The APRS protocol specification says nothing about a possible carriage return after the\n" );
1789
+ dw_printf ("message id. Adding CR might prevent proper interoperability with with other applications.\n" );
1790
+ * p = '\0' ;
1791
+ }
1792
+
1768
1793
if (strlen (A -> g_message_number ) >= 3 && A -> g_message_number [2 ] == '}' ) A -> g_message_number [2 ] = '\0' ;
1769
1794
snprintf (A -> g_data_type_desc , sizeof (A -> g_data_type_desc ), "\"%s\" REJected message number \"%s\" from \"%s\"" , A -> g_src , A -> g_message_number , addressee );
1770
1795
A -> g_message_subtype = message_subtype_ack ;
@@ -1788,13 +1813,23 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
1788
1813
// Look for message number.
1789
1814
char * pno = strchr (p -> message , '{' );
1790
1815
if (pno != NULL ) {
1791
- * pno = '\0' ;
1792
- int mlen = strlen (pno + 1 );
1816
+ strlcpy (A -> g_message_number , pno + 1 , sizeof (A -> g_message_number ));
1817
+
1818
+ // Xastir puts a carriage return on the end.
1819
+ char * p = strchr (A -> g_message_number , '\r' );
1820
+ if (p != NULL ) {
1821
+ text_color_set (DW_COLOR_ERROR );
1822
+ dw_printf ("The APRS protocol specification says nothing about a possible carriage return after the\n" );
1823
+ dw_printf ("message id. Adding CR might prevent proper interoperability with with other applications.\n" );
1824
+ * p = '\0' ;
1825
+ }
1826
+
1827
+ int mlen = strlen (A -> g_message_number );
1793
1828
if (mlen < 1 || mlen > 5 ) {
1794
1829
text_color_set (DW_COLOR_ERROR );
1795
- dw_printf ("Message number \"%s\" has length outside range of 1 to 5.\n" , pno + 1 );
1830
+ dw_printf ("Message number \"%s\" has length outside range of 1 to 5.\n" , A -> g_message_number );
1796
1831
}
1797
- strlcpy ( A -> g_message_number , pno + 1 , sizeof ( A -> g_message_number ));
1832
+
1798
1833
// TODO: Complain if not alphanumeric.
1799
1834
1800
1835
char ack [8 ] = "" ;
@@ -1824,6 +1859,11 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
1824
1859
/* No location so don't use process_comment () */
1825
1860
1826
1861
strlcpy (A -> g_comment , p -> message , sizeof (A -> g_comment ));
1862
+ // Remove message number when displaying message text.
1863
+ pno = strchr (A -> g_comment , '{' );
1864
+ if (pno != NULL ) {
1865
+ * pno = '\0' ;
1866
+ }
1827
1867
}
1828
1868
1829
1869
}
@@ -3752,9 +3792,14 @@ time_t get_timestamp (decode_aprs_t *A, char *p)
3752
3792
* It is composed of:
3753
3793
* a pair of letters in range A to R.
3754
3794
* a pair of digits in range of 0 to 9.
3755
- * a pair of letters in range of A to X.
3795
+ * an optional pair of letters in range of A to X.
3796
+ *
3797
+ * The spec says:
3798
+ * "All letters must be transmitted in upper case.
3799
+ * Letters may be received in upper case or lower case."
3756
3800
*
3757
- * The APRS spec says that all letters must be transmitted in upper case.
3801
+ * Typically the second set of letters is written in lower case.
3802
+ * An earlier version incorrectly produced an error if lower case found.
3758
3803
*
3759
3804
*
3760
3805
* Examples from APRS spec:
@@ -3775,25 +3820,10 @@ int get_maidenhead (decode_aprs_t *A, char *p)
3775
3820
3776
3821
/* We have 4 characters matching the rule. */
3777
3822
3778
- if (islower (p [0 ]) || islower (p [1 ])) {
3779
- if ( ! A -> g_quiet ) {
3780
- text_color_set (DW_COLOR_ERROR );
3781
- dw_printf ("Warning: Lower case letter in Maidenhead locator. Specification requires upper case.\n" );
3782
- }
3783
- }
3784
-
3785
3823
if (toupper (p [4 ]) >= 'A' && toupper (p [4 ]) <= 'X' &&
3786
3824
toupper (p [5 ]) >= 'A' && toupper (p [5 ]) <= 'X' ) {
3787
3825
3788
3826
/* We have 6 characters matching the rule. */
3789
-
3790
- if (islower (p [4 ]) || islower (p [5 ])) {
3791
- if ( ! A -> g_quiet ) {
3792
- text_color_set (DW_COLOR_ERROR );
3793
- dw_printf ("Warning: Lower case letter in Maidenhead locator. Specification requires upper case.\n" );
3794
- }
3795
- }
3796
-
3797
3827
return 6 ;
3798
3828
}
3799
3829
@@ -4649,7 +4679,7 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen)
4649
4679
int a = A -> g_comment [match [0 ].rm_so + 2 ];
4650
4680
int o = A -> g_comment [match [0 ].rm_so + 3 ];
4651
4681
4652
- dw_printf ("DAO start=%d, end=%d\n" , (int )(match [0 ].rm_so ), (int )(match [0 ].rm_eo ));
4682
+ // dw_printf("DAO start=%d, end=%d\n", (int)(match[0].rm_so), (int)(match[0].rm_eo));
4653
4683
4654
4684
4655
4685
/*
@@ -5035,7 +5065,9 @@ int main (int argc, char *argv[])
5035
5065
/* Try to process it. */
5036
5066
5037
5067
text_color_set (DW_COLOR_REC );
5038
- dw_printf ("\n%s\n" , stuff );
5068
+ dw_printf ("\n" );
5069
+ ax25_safe_print (stuff , -1 , 0 );
5070
+ dw_printf ("\n" );
5039
5071
5040
5072
// Do we have monitor format, KISS, or AX.25 frame?
5041
5073
0 commit comments