From 3cf36a7877be815ddd77b64f2ae52ef599ba0b58 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Wed, 15 Dec 2021 16:56:42 -0600 Subject: [PATCH] Fix SWR meter for FTDX9000 --- rigs/yaesu/newcat.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 30294f924..0110086ca 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -4585,7 +4585,14 @@ int newcat_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val) RETURNFUNC(-RIG_ENAVAIL); } - snprintf(priv->cmd_str, sizeof(priv->cmd_str), "RM6%c", cat_term); + if (is_ftdx9000) + { + snprintf(priv->cmd_str, sizeof(priv->cmd_str), "RM09%c", cat_term); + } + else + { + snprintf(priv->cmd_str, sizeof(priv->cmd_str), "RM6%c", cat_term); + } break; case RIG_LEVEL_ALC: