Implement set/get_vfo for FT-897 using FT-857 routines

https://github.com/Hamlib/Hamlib/issues/285
pull/290/head
Michael Black W9MDB 2020-06-07 08:32:32 -05:00
rodzic aeddc1eaec
commit a23e9ee47d
1 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -88,8 +88,8 @@ static int ft897_set_freq(RIG *rig, vfo_t vfo, freq_t freq);
static int ft897_get_freq(RIG *rig, vfo_t vfo, freq_t *freq);
static int ft897_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width);
static int ft897_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width);
// static int ft897_set_vfo(RIG *rig, vfo_t vfo);
// static int ft897_get_vfo(RIG *rig, vfo_t *vfo);
extern int ft857_set_vfo(RIG *rig, vfo_t vfo);
extern int ft857_get_vfo(RIG *rig, vfo_t *vfo);
static int ft897_set_split_vfo(RIG *rig, vfo_t vfo, split_t split,
vfo_t tx_vfo);
static int ft897_get_split_vfo(RIG *rig, vfo_t vfo, split_t *split,
@ -190,9 +190,9 @@ const struct rig_caps ft897_caps =
RIG_MODEL(RIG_MODEL_FT897),
.model_name = "FT-897",
.mfg_name = "Yaesu",
.version = "20200323.0",
.version = "20200607.0",
.copyright = "LGPL",
.status = RIG_STATUS_BETA,
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER,
.ptt_type = RIG_PTT_RIG,
.dcd_type = RIG_DCD_RIG,
@ -299,6 +299,8 @@ const struct rig_caps ft897_caps =
.rig_cleanup = ft897_cleanup,
.rig_open = ft897_open,
.rig_close = ft897_close,
.get_vfo = ft857_get_vfo,
.set_vfo = ft857_set_vfo,
.set_freq = ft897_set_freq,
.get_freq = ft897_get_freq,
.set_mode = ft897_set_mode,