From 0f5982272aa620bfe8873c168a184686795aea80 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Wed, 17 May 2023 14:10:32 -0500 Subject: [PATCH] Add icom_get_vfo for IC7610 and IC785X --- rigs/icom/ic7300.c | 2 +- rigs/icom/ic7610.c | 4 ++-- rigs/icom/ic785x.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/rigs/icom/ic7300.c b/rigs/icom/ic7300.c index f87a683a2..19ad5e426 100644 --- a/rigs/icom/ic7300.c +++ b/rigs/icom/ic7300.c @@ -787,7 +787,7 @@ struct rig_caps ic9700_caps = RIG_MODEL(RIG_MODEL_IC9700), .model_name = "IC-9700", .mfg_name = "Icom", - .version = BACKEND_VER ".12", + .version = BACKEND_VER ".13", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/rigs/icom/ic7610.c b/rigs/icom/ic7610.c index fbd6d0b39..d55a1d1c7 100644 --- a/rigs/icom/ic7610.c +++ b/rigs/icom/ic7610.c @@ -349,7 +349,7 @@ const struct rig_caps ic7610_caps = RIG_MODEL(RIG_MODEL_IC7610), .model_name = "IC-7610", .mfg_name = "Icom", - .version = BACKEND_VER ".11", + .version = BACKEND_VER ".12", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -544,7 +544,7 @@ const struct rig_caps ic7610_caps = .set_mode = icom_set_mode_with_data, .get_mode = icom_get_mode_with_data, .set_vfo = icom_set_vfo, -// .get_vfo = icom_get_vfo, + .get_vfo = icom_get_vfo, .set_ant = icom_set_ant, .get_ant = icom_get_ant, diff --git a/rigs/icom/ic785x.c b/rigs/icom/ic785x.c index 51c47813a..99b1e5d9a 100644 --- a/rigs/icom/ic785x.c +++ b/rigs/icom/ic785x.c @@ -241,7 +241,7 @@ const struct rig_caps ic785x_caps = RIG_MODEL(RIG_MODEL_IC785x), .model_name = "IC-7850/7851", .mfg_name = "Icom", - .version = BACKEND_VER ".5", + .version = BACKEND_VER ".6", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -437,7 +437,7 @@ const struct rig_caps ic785x_caps = .set_mode = icom_set_mode_with_data, .get_mode = icom_get_mode_with_data, .set_vfo = icom_set_vfo, -// .get_vfo = icom_get_vfo, + .get_vfo = icom_get_vfo, .set_ant = icom_set_ant, .get_ant = icom_get_ant,