diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 08d983130..b15f6f682 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -9032,10 +9032,12 @@ int newcat_get_cmd(RIG *rig) * There are many more cases like these and they vary by rig model. * * So far, "rig busy" type situations with the ? response have not been observed for get commands. + * Followup 20201213 FTDX3000 FB; command returning ?; so do NOT abort + * see https://github.com/Hamlib/Hamlib/issues/464 */ rig_debug(RIG_DEBUG_ERR, "%s: Command rejected by the rig: '%s'\n", __func__, priv->cmd_str); - return -RIG_ERJCTED; + // return -RIG_ERJCTED; } continue; diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index 6b8e76e6c..6b69bf15e 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20201212" +#define NEWCAT_VER "20201213" /* Hopefully large enough for future use, 128 chars plus '\0' */ #define NEWCAT_DATA_LEN 129