diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index e8b282c91..d7957ef6e 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -8515,6 +8515,10 @@ int newcat_set_rx_bandwidth(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width) { SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "SH0%02d;", w); } + else if (is_ftdx10) + { + SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "SH00%02d;", w); + } else { SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "SH%c%02d;", main_sub_vfo, w); diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index 0e5069038..d19847564 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20220201" +#define NEWCAT_VER "20220207" /* Hopefully large enough for future use, 128 chars plus '\0' */ #define NEWCAT_DATA_LEN 129