From 6965927fb4b610e36edcc43dff8769f2a9a01b15 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Fri, 19 Aug 2022 07:55:20 -0500 Subject: [PATCH] Add IC275 to icom rigs that can't do 0x25 --- rigs/icom/icom.c | 3 ++- rigs/icom/icom.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/rigs/icom/icom.c b/rigs/icom/icom.c index 7ec57b4f4..6dbc0cf9c 100644 --- a/rigs/icom/icom.c +++ b/rigs/icom/icom.c @@ -682,7 +682,8 @@ int icom_init(RIG *rig) // we can add rigs here that will never use the 0x25 cmd // some like the 751 don't even reject the command and have to time out if ( - rig->caps->rig_model == RIG_MODEL_IC375 + rig->caps->rig_model == RIG_MODEL_IC275 + || rig->caps->rig_model == RIG_MODEL_IC375 || rig->caps->rig_model == RIG_MODEL_IC706 || rig->caps->rig_model == RIG_MODEL_IC706MKII || rig->caps->rig_model == RIG_MODEL_IC706MKIIG diff --git a/rigs/icom/icom.h b/rigs/icom/icom.h index 8238f9275..c363f3b85 100644 --- a/rigs/icom/icom.h +++ b/rigs/icom/icom.h @@ -30,7 +30,7 @@ #include #endif -#define BACKEND_VER "20220801" +#define BACKEND_VER "20220819" #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)