Allow 0xe1 async frames in icom frame.c

pull/1584/head
Mike Black W9MDB 2024-07-04 17:24:11 -05:00
rodzic 6a2bbf130d
commit 660bfcb1d9
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -206,6 +206,11 @@ again1:
RETURNFUNC(-RIG_EPROTO);
}
if (buf[2] == 0xe1)
{
rig_debug(RIG_DEBUG_VERBOSE, "%s: async packet? Read again\n", __func__);
goto again1;
}
if (icom_is_async_frame(rig, frm_len, buf))
{
icom_process_async_frame(rig, frm_len, buf);