From 4d8e2c1f94b743872a4b2be49fd3103af363ee5f Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Wed, 19 Jan 2022 13:28:02 -0600 Subject: [PATCH] Remove FA/FB command validation for FT-DX3000 -- trying to find out why VFOA is muting on freq change https://github.com/Hamlib/Hamlib/issues/903 --- rigs/yaesu/newcat.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 688ea003b..50276cf51 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -10116,10 +10116,18 @@ int newcat_set_cmd_validate(RIG *rig) if ((strncmp(priv->cmd_str, "FA", 2) == 0) && (strlen(priv->cmd_str) > 3)) { strcpy(valcmd, "FA;"); + if (priv->rig_id == NC_RIGID_FTDX3000) + { + strcpy(valcmd, ""); + } } else if ((strncmp(priv->cmd_str, "FB", 2) == 0) && (strlen(priv->cmd_str) > 3)) { strcpy(valcmd, "FB;"); + if (priv->rig_id == NC_RIGID_FTDX3000) + { + strcpy(valcmd, ""); + } } else if ((strncmp(priv->cmd_str, "MD", 2) == 0) && (strlen(priv->cmd_str) > 3)) {