From 54c522ef99014c0085d8f2ac9697002a4cf3900d Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Fri, 11 Sep 2020 09:49:47 -0500 Subject: [PATCH] Start of migrating Icom rigs to separate LEVEL and PARM values to avoid collisions https://github.com/Hamlib/Hamlib/issues/373 --- rigs/icom/ic756.c | 2 +- rigs/icom/icom.h | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/rigs/icom/ic756.c b/rigs/icom/ic756.c index 9c7404248..730b802d0 100644 --- a/rigs/icom/ic756.c +++ b/rigs/icom/ic756.c @@ -542,7 +542,7 @@ const struct rig_caps ic756pro2_caps = RIG_MODEL(RIG_MODEL_IC756PROII), .model_name = "IC-756PROII", .mfg_name = "Icom", - .version = BACKEND_VER ".1", + .version = BACKEND_VER ".0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/rigs/icom/icom.h b/rigs/icom/icom.h index 90fb245e3..fe2596584 100644 --- a/rigs/icom/icom.h +++ b/rigs/icom/icom.h @@ -31,7 +31,7 @@ #include #endif -#define BACKEND_VER "20200910" +#define BACKEND_VER "20200911" /* * defines used by comp_cal_str in rig.c @@ -167,6 +167,8 @@ struct icom_priv_caps int agc_levels_present; /* Flag to indicate that agc_levels array is populated */ struct icom_agc_level agc_levels[RIG_AGC_LAST + 1]; /* Icom rig-specific AGC levels, the last entry should have level -1 */ struct cmdparams *extcmds; /* Pointer to extended operations array */ + struct cmdparams *extlevels; /* Pointer to extended operations array */ + struct cmdparams *extparms; /* Pointer to extended operations array */ };