[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 614f08b6720e3d8d44821
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-11 23:47:29
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via 614f08b6720e3d8d44821bf47405866529f94920 (commit) from 612de9762e3a7e00597ce48499746b77e96b433a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 614f08b6720e3d8d44821bf47405866529f94920 Author: Michael Black W9MDB <mdb...@ya...> Date: Mon Jan 11 17:45:53 2021 -0600 Disable several question_mark_response_means_rejected lines They are much too general and need to be narrowed to rig/mode https://github.com/Hamlib/Hamlib/issues/505 diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index a0896675..20ef392a 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -3304,7 +3304,9 @@ int newcat_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val) } // Some Yaesu rigs reject this command in AM/FM modes - priv->question_mark_response_means_rejected = 1; + // Disabling as it's too general + // Need to be rig/mode specific + //priv->question_mark_response_means_rejected = 1; break; case RIG_LEVEL_CWPITCH: @@ -3371,7 +3373,9 @@ int newcat_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val) snprintf(priv->cmd_str, sizeof(priv->cmd_str), "MG%03d%c", fpf, cat_term); // Some Yaesu rigs reject this command in RTTY modes - priv->question_mark_response_means_rejected = 1; + // Disabling as it's too general + // Need to be rig/mode specific + //priv->question_mark_response_means_rejected = 1; break; case RIG_LEVEL_METER: @@ -3579,7 +3583,9 @@ int newcat_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val) } // Some Yaesu rigs reject this command in AM/FM modes - priv->question_mark_response_means_rejected = 1; + // Disabling as it's too general + // Need to be rig/mode specific + //priv->question_mark_response_means_rejected = 1; break; case RIG_LEVEL_COMP: @@ -4868,7 +4874,9 @@ int newcat_set_func(RIG *rig, vfo_t vfo, setting_t func, int status) } // Some Yaesu rigs reject this command in AM/FM modes - priv->question_mark_response_means_rejected = 1; + // Disabling as it's too general + // Need to be rig/mode specific + //priv->question_mark_response_means_rejected = 1; break; case RIG_FUNC_MN: @@ -4886,7 +4894,9 @@ int newcat_set_func(RIG *rig, vfo_t vfo, setting_t func, int status) } // Some Yaesu rigs reject this command in AM/FM modes - priv->question_mark_response_means_rejected = 1; + // Disabling as it's too general + // Need to be rig/mode specific + //priv->question_mark_response_means_rejected = 1; break; case RIG_FUNC_FBKIN: @@ -4992,7 +5002,9 @@ int newcat_set_func(RIG *rig, vfo_t vfo, setting_t func, int status) } // Some Yaesu rigs reject this command in AM/FM modes - priv->question_mark_response_means_rejected = 1; + // Disabling as it's too general + // Need to be rig/mode specific + //priv->question_mark_response_means_rejected = 1; break; case RIG_FUNC_COMP: diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index 7954f8e9..29471517 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20210108" +#define NEWCAT_VER "20210111" /* Hopefully large enough for future use, 128 chars plus '\0' */ #define NEWCAT_DATA_LEN 129 ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/newcat.c | 24 ++++++++++++++++++------ rigs/yaesu/newcat.h | 2 +- 2 files changed, 19 insertions(+), 7 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |