pull/1590/head
Christian Bayer 2024-07-28 20:00:35 +02:00
rodzic b718788c9a
commit 6db44d6d49
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 090D0F8B431A7C88
1 zmienionych plików z 20 dodań i 5 usunięć

Wyświetl plik

@ -282,10 +282,25 @@ enum ft817_digi
{ 0x05, 100 } \
} }
#define FT817_SWR_CAL { 2, \
// SWR values from Christian WA4YA, DL4YA
#define FT817_SWR_CAL { 16, \
{ \
{ 0, 0 }, \
{ 15, 100 } \
{ 0, 1.0f }, \
{ 1, 1.4f }, \
{ 2, 1.8f }, \
{ 3, 2.13f }, \
{ 4, 2.25f }, \
{ 5, 3.7f }, \
{ 6, 6.0f }, \
{ 7, 7.0f }, \
{ 8, 8.0f }, \
{ 9, 9.0f }, \
{ 10, 10.0f }, \
{ 11, 10.0f }, \
{ 12, 10.0f }, \
{ 13, 10.0f }, \
{ 14, 10.0f }, \
{ 15, 10.0f } \
} }
@ -294,7 +309,7 @@ struct rig_caps ft817_caps =
RIG_MODEL(RIG_MODEL_FT817),
.model_name = "FT-817",
.mfg_name = "Yaesu",
.version = "20240520.0",
.version = "20240728.1",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER,
@ -1178,7 +1193,7 @@ static int ft817_get_ptt(RIG *rig, vfo_t vfo, ptt_t *ptt)
}
}
*ptt = ((p->tx_status & 0x80) == 0);
*ptt = ((p->tx_status & 0x20) == 0x20);
return RIG_OK;
}