diff --git a/rigs/yaesu/ft5000.c b/rigs/yaesu/ft5000.c index 3faa0805d..b02b5d775 100644 --- a/rigs/yaesu/ft5000.c +++ b/rigs/yaesu/ft5000.c @@ -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 }, diff --git a/rigs/yaesu/ft5000.h b/rigs/yaesu/ft5000.h index b7524447d..0a1809931 100644 --- a/rigs/yaesu/ft5000.h +++ b/rigs/yaesu/ft5000.h @@ -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}, \ + } \ + } /*