Add default VD meter calibration for 200W yaesu rigs e.g. FTDX-101MP

pull/1022/head
Mike Black W9MDB 2022-05-01 07:26:44 -05:00
rodzic f35e2d8c34
commit 79180089a6
3 zmienionych plików z 20 dodań i 5 usunięć

Wyświetl plik

@ -75,7 +75,7 @@ const struct rig_caps ftdx101mp_caps =
RIG_MODEL(RIG_MODEL_FTDX101MP),
.model_name = "FTDX-101MP",
.mfg_name = "Yaesu",
.version = NEWCAT_VER ".5",
.version = NEWCAT_VER ".6",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER,
@ -117,6 +117,7 @@ const struct rig_caps ftdx101mp_caps =
.bank_qty = 0,
.chan_desc_sz = 0,
.rfpower_meter_cal = FTDX101MP_RFPOWER_METER_WATTS_CAL,
.vd_meter_cal = YAESU_DEFAULT_VD_METER_200W_CAL,
.str_cal = FTDX101D_STR_CAL,
.swr_cal = FTDX101D_SWR_CAL,
.chan_list = {

Wyświetl plik

@ -186,19 +186,21 @@ const cal_table_float_t yaesu_default_rfpower_meter_cal =
const cal_table_float_t yaesu_default_vd_meter_cal =
{
2,
3,
{
{0, 0.0f},
{190, 13.8f},
{196, 13.8f},
{255, 17.95f},
}
};
const cal_table_float_t yaesu_default_id_meter_cal =
{
2,
3,
{
{0, 0.0f},
{100, 10.0f},
{255, 25.5f},
}
};

Wyświetl plik

@ -50,7 +50,7 @@
typedef char ncboolean;
/* shared function version */
#define NEWCAT_VER "20220430"
#define NEWCAT_VER "20220501"
/* Hopefully large enough for future use, 128 chars plus '\0' */
#define NEWCAT_DATA_LEN 129
@ -69,6 +69,18 @@ typedef char ncboolean;
.ctcss_sql = 1,\
}
#define YAESU_DEFAULT_VD_METER_200W_CAL \
{ \
3, \
{ \
{0, 0.0f}, \
{196, 50.0f}, \
{255, 65.0f}, \
} \
}
extern const struct confparams newcat_cfg_params[];
/*