Skip to content

Commit ba0313c

Browse files
committed
Add FTM-500D to recognized device identifers.
1 parent a08d093 commit ba0313c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/decode_aprs.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -1674,6 +1674,7 @@ static void aprs_mic_e (decode_aprs_t *A, packet_t pp, unsigned char *info, int
16741674
else if (*pfirst == '`' && *(plast-1) == '_' && *plast == '0') { strlcpy (A->g_mfr, "Yaesu FT3D", sizeof(A->g_mfr)); pfirst++; plast-=2; }
16751675
else if (*pfirst == '`' && *(plast-1) == '_' && *plast == '3') { strlcpy (A->g_mfr, "Yaesu FT5D", sizeof(A->g_mfr)); pfirst++; plast-=2; }
16761676
else if (*pfirst == '`' && *(plast-1) == '_' && *plast == '1') { strlcpy (A->g_mfr, "Yaesu FTM-300D", sizeof(A->g_mfr)); pfirst++; plast-=2; }
1677+
else if (*pfirst == '`' && *(plast-1) == '_' && *plast == '5') { strlcpy (A->g_mfr, "Yaesu FTM-500D", sizeof(A->g_mfr)); pfirst++; plast-=2; }
16771678

16781679
else if (*pfirst == '`' && *(plast-1) == ' ' && *plast == 'X') { strlcpy (A->g_mfr, "AP510", sizeof(A->g_mfr)); pfirst++; plast-=2; }
16791680

@@ -1799,7 +1800,8 @@ static void aprs_mic_e (decode_aprs_t *A, packet_t pp, unsigned char *info, int
17991800
* :xxxxxxxxx: ... {mm}aa Message with new style message number and ack.
18001801
*
18011802
*
1802-
* Reference: See new message id style: http://www.aprs.org/aprs11/replyacks.txt
1803+
* Reference: http://www.aprs.org/txt/messages101.txt
1804+
* http://www.aprs.org/aprs11/replyacks.txt <-- New (1999) adding ack to outgoing message.
18031805
*
18041806
*------------------------------------------------------------------*/
18051807

0 commit comments

Comments
 (0)