Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Identify user-defined experimental data format as {{ per APRS spec
  • Loading branch information
maqifrnswa committed Mar 21, 2020
commit 6ce9e2b4d68a9a167ae02948a416a41f3791725c
3 changes: 3 additions & 0 deletions decode_aprs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down