Skip to content

Commit 1484350

Browse files
committed
Pull request 259 - Identify '{{' as user defined experimental.
1 parent fde5bf6 commit 1484350

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/decode_aprs.c

+3
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,9 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
331331
else if (strncmp((char*)pinfo, "{mc", 3) == 0) {
332332
aprs_morse_code (A, (char*)pinfo, info_len);
333333
}
334+
else if (strncmp((char*)pinfo, "{{", 2) == 0) {
335+
snprintf (A->g_msg_type, sizeof(A->g_msg_type), "User-Defined Experimental");
336+
}
334337
else {
335338
//aprs_user_defined (A, pinfo, info_len);
336339
}

0 commit comments

Comments
 (0)