Add power table to FTDX5000 since it's a 200W rig

pull/891/head
Mike Black W9MDB 2021-12-14 09:06:29 -06:00
rodzic 16cf199015
commit 7ea9eb3f13
2 zmienionych plików z 26 dodań i 2 usunięć

Wyświetl plik

@ -142,7 +142,7 @@ const struct rig_caps ftdx5000_caps =
RIG_MODEL(RIG_MODEL_FTDX5000),
.model_name = "FTDX-5000",
.mfg_name = "Yaesu",
.version = NEWCAT_VER ".1",
.version = NEWCAT_VER ".2",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER,
@ -184,6 +184,7 @@ const struct rig_caps ftdx5000_caps =
.transceive = RIG_TRN_OFF, /* May enable later as the 5000 has an Auto Info command */
.bank_qty = 0,
.chan_desc_sz = 0,
.rfpower_meter_cal = FT5000_RFPOWER_METER_CAL,
.str_cal = FTDX5000_STR_CAL,
.chan_list = {
{ 1, 99, RIG_MTYPE_MEM, NEWCAT_MEM_CAP },

Wyświetl plik

@ -92,7 +92,30 @@
{ 220, 40 }, /* +40 */ \
{ 240, 50 }, /* +50 */ \
{ 255, 60 }, /* +60 */ \
} }
}\
}
// Values stolen from FLRig -- thanks to Dave W1HKJ
#define FT5000_RFPOWER_METER_CAL \
{ \
14, \
{ \
{55, 10.0f}, \
{75, 20.0f}, \
{101, 40.0f}, \
{125, 60.0f}, \
{144, 80.0f}, \
{161, 100.0f}, \
{177, 120.0f}, \
{190, 140.0f}, \
{202, 160.0f}, \
{215, 180.0f}, \
{225, 200.0f}, \
{237, 220.0f}, \
{242, 240.0f}, \
{255, 250.0f}, \
} \
}
/*