From b1185fb5ff913fd2e921e67874f35ca7528e8187 Mon Sep 17 00:00:00 2001 From: Michael Black Date: Sat, 14 Mar 2020 14:51:23 -0500 Subject: [PATCH] Set x25cmdfails so it won'r get repeated if not available --- rigs/icom/icom.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rigs/icom/icom.c b/rigs/icom/icom.c index 093c141bf..62fc30b44 100644 --- a/rigs/icom/icom.c +++ b/rigs/icom/icom.c @@ -3650,6 +3650,7 @@ int icom_set_split_freq(RIG *rig, vfo_t vfo, freq_t tx_freq) { return rc; } + priv->x25cmdfails = 1; } @@ -3799,6 +3800,7 @@ int icom_get_split_freq(RIG *rig, vfo_t vfo, freq_t *tx_freq) *tx_freq = from_bcd(ackbuf + 2, (priv->civ_731_mode ? 4 : 5) * 2); return rc; } + priv->x25cmdfails = 1; } save_vfo = priv->curr_vfo; // so we can restore it later