From 81e14ae4f1663de21ada86b3b204a286cc58ac1a Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Mon, 11 Sep 2023 22:09:11 -0500 Subject: [PATCH] Remove ST command from newcat.c for FTDX101D/MP set_tx_vfo Seems to fail on latest firmware for FTDX101MP https://github.com/Hamlib/Hamlib/issues/1379 --- rigs/yaesu/newcat.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index bf3644cc5..e7c586eb4 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -7915,12 +7915,14 @@ int newcat_set_tx_vfo(RIG *rig, vfo_t tx_vfo) if (rig->state.current_vfo == RIG_VFO_B || rig->state.current_vfo == RIG_VFO_SUB) { p1++; } } - if (is_ftdx101d || is_ftdx101mp) +#if 0 // this doesn't seem to work on FTDX101MP latest firmware as of 20230911 + if ((is_ftdx101d || is_ftdx101mp) && p1 == '1') { // what other Yaesu rigs should be using this? // The DX101D returns FT0 when in split and not transmitting command = "ST"; } +#endif SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "%s%c%c", command, p1, cat_term);