Add two more allowances for FT-991 firmware bug where IF command returns 41 bytes instead of 28

pull/1389/head
Mike Black W9MDB 2023-09-27 10:23:07 -05:00 zatwierdzone przez Frank Goenninger
rodzic be8372c72f
commit 85226e5bc4
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -2924,6 +2924,7 @@ int newcat_get_rit(RIG *rig, vfo_t vfo, shortfreq_t *rit)
{
case 27: offset = 13; break;
case 41: // FT-991 V2-01 seems to randomly give 13 extra bytes
case 28: offset = 14; break;
default: offset = 0;
@ -3040,6 +3041,7 @@ int newcat_get_xit(RIG *rig, vfo_t vfo, shortfreq_t *xit)
{
case 27: offset = 13; break;
case 41: // FT-991 V2-01 seems to randomly give 13 extra bytes
case 28: offset = 14; break;
default: offset = 0;