kopia lustrzana https://github.com/Hamlib/Hamlib
Fix filter set for IC375 and promote to stable
https://github.com/Hamlib/Hamlib/issues/1113pull/1119/head
rodzic
66a823bb6b
commit
224ccc7839
|
@ -160,7 +160,7 @@ const struct rig_caps ic375_caps =
|
||||||
.mfg_name = "Icom",
|
.mfg_name = "Icom",
|
||||||
.version = BACKEND_VER ".0",
|
.version = BACKEND_VER ".0",
|
||||||
.copyright = "LGPL",
|
.copyright = "LGPL",
|
||||||
.status = RIG_STATUS_BETA,
|
.status = RIG_STATUS_STABLE,
|
||||||
.rig_type = RIG_TYPE_TRANSCEIVER,
|
.rig_type = RIG_TYPE_TRANSCEIVER,
|
||||||
.ptt_type = RIG_PTT_NONE,
|
.ptt_type = RIG_PTT_NONE,
|
||||||
.dcd_type = RIG_DCD_NONE,
|
.dcd_type = RIG_DCD_NONE,
|
||||||
|
|
|
@ -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,
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: icmode=%d, icmode_ext=%d\n", __func__, icmode,
|
||||||
icmode_ext);
|
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 */
|
/* IC-726 & IC-475A/E also limited support - only on CW */
|
||||||
/* TODO: G4WJS CW wide/narrow are possible with above two radios */
|
/* TODO: G4WJS CW wide/narrow are possible with above two radios */
|
||||||
if (priv->civ_731_mode || rig->caps->rig_model == RIG_MODEL_OS456
|
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_IC726
|
||||||
|| rig->caps->rig_model == RIG_MODEL_IC475
|
|| rig->caps->rig_model == RIG_MODEL_IC475
|
||||||
|| rig->caps->rig_model == RIG_MODEL_IC910
|
|| rig->caps->rig_model == RIG_MODEL_IC910
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#endif
|
#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_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)
|
#define ICOM_GET_VFO_NUMBER(vfo) (ICOM_IS_SECONDARY_VFO(vfo) ? 0x01 : 0x00)
|
||||||
|
|
Ładowanie…
Reference in New Issue