From 224ccc7839c0f2ce4535b38ce0f81cf7a3f67b5c Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Fri, 9 Sep 2022 14:01:43 -0500 Subject: [PATCH] Fix filter set for IC375 and promote to stable https://github.com/Hamlib/Hamlib/issues/1113 --- rigs/icom/ic275.c | 2 +- rigs/icom/icom.c | 3 ++- rigs/icom/icom.h | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rigs/icom/ic275.c b/rigs/icom/ic275.c index c6e8349cb..023c00ab5 100644 --- a/rigs/icom/ic275.c +++ b/rigs/icom/ic275.c @@ -160,7 +160,7 @@ const struct rig_caps ic375_caps = .mfg_name = "Icom", .version = BACKEND_VER ".0", .copyright = "LGPL", - .status = RIG_STATUS_BETA, + .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, .ptt_type = RIG_PTT_NONE, .dcd_type = RIG_DCD_NONE, diff --git a/rigs/icom/icom.c b/rigs/icom/icom.c index cc3f61d57..66300e713 100644 --- a/rigs/icom/icom.c +++ b/rigs/icom/icom.c @@ -2327,10 +2327,11 @@ int icom_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width) rig_debug(RIG_DEBUG_VERBOSE, "%s: icmode=%d, icmode_ext=%d\n", __func__, icmode, icmode_ext); - /* IC-731, IC-726, IC-735, IC-910, IC-7000 don't support passband data */ + /* IC-375, IC-731, IC-726, IC-735, IC-910, IC-7000 don't support passband data */ /* IC-726 & IC-475A/E also limited support - only on CW */ /* TODO: G4WJS CW wide/narrow are possible with above two radios */ if (priv->civ_731_mode || rig->caps->rig_model == RIG_MODEL_OS456 + || rig->caps->rig_model == RIG_MODEL_IC375 || rig->caps->rig_model == RIG_MODEL_IC726 || rig->caps->rig_model == RIG_MODEL_IC475 || rig->caps->rig_model == RIG_MODEL_IC910 diff --git a/rigs/icom/icom.h b/rigs/icom/icom.h index c34382f27..8e232e8fa 100644 --- a/rigs/icom/icom.h +++ b/rigs/icom/icom.h @@ -30,7 +30,7 @@ #include #endif -#define BACKEND_VER "20220905" +#define BACKEND_VER "20220909" #define ICOM_IS_SECONDARY_VFO(vfo) ((vfo) & (RIG_VFO_B | RIG_VFO_SUB | RIG_VFO_SUB_B | RIG_VFO_MAIN_B)) #define ICOM_GET_VFO_NUMBER(vfo) (ICOM_IS_SECONDARY_VFO(vfo) ? 0x01 : 0x00)