From a03a79c864148458339e2ec3d027beeab818d1b4 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Thu, 1 Feb 2024 15:48:01 -0600 Subject: [PATCH] Add tone_enable in more places to cover all set_split_freq cases --- rigs/icom/icom.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rigs/icom/icom.c b/rigs/icom/icom.c index d9c357860..6741a07e2 100644 --- a/rigs/icom/icom.c +++ b/rigs/icom/icom.c @@ -5462,6 +5462,10 @@ int icom_set_split_freq(RIG *rig, vfo_t vfo, freq_t tx_freq) if (retval == RIG_OK) { + if (priv->tone_enable) + { + rig_set_func(rig, RIG_VFO_CURR, RIG_FUNC_TONE, 1); + } RETURNFUNC2(retval); } }