Identify user-defined experimental data format as {{ per APRS spec

This commit is contained in:
Scott Howard 2020-03-21 12:51:58 -04:00
parent a1e2d1c3a8
commit 6ce9e2b4d6
1 changed files with 3 additions and 0 deletions

View File

@ -326,6 +326,9 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
else if (strncmp((char*)pinfo, "{mc", 3) == 0) {
aprs_morse_code (A, (char*)pinfo, info_len);
}
else if (strncmp((char*)pinfo, "{{", 2) == 0) {
snprintf (A->g_msg_type, sizeof(A->g_msg_type), "User-Defined Experimental");
}
else {
//aprs_user_defined (A, pinfo, info_len);
}