From cf3b528ea7f9c4274524f7793b9d9bc0df7d1234 Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Wed, 11 Nov 2020 16:40:06 -0600 Subject: [PATCH] Change newcat.c RIG_FUNC_TUNER to send AC001 instead of AC002 to turn off TUNE G TUNE 1 is used to start tuning --- rigs/yaesu/newcat.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 2822278b1..372dbc2e7 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -4884,9 +4884,6 @@ int newcat_set_func(RIG *rig, vfo_t vfo, setting_t func, int status) return -RIG_ENAVAIL; } - // some rigs use AC02 to actually start tuning - if (status == 1 && (is_ftdx101 || is_ftdx5000)) { status = 2; } - snprintf(priv->cmd_str, sizeof(priv->cmd_str), "AC00%d%c", status == 0 ? 0 : status, cat_term);