diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 442264154..ffa1d9f1d 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -10977,6 +10977,10 @@ int newcat_set_cmd_validate(RIG *rig) { strcpy(valcmd, ""); } + else if (strncmp(priv->cmd_str, "PC", 2) == 0) + { + strcpy(valcmd, ""); + } else { rig_debug(RIG_DEBUG_TRACE, "%s: %s not implemented\n", __func__, priv->cmd_str); diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index 30f87d203..44f3afc5a 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20230930" +#define NEWCAT_VER "20231007" /* Hopefully large enough for future use, 128 chars plus '\0' */ #define NEWCAT_DATA_LEN 129