From 3af9f06fa5dacfd6ca39ac4adc4705acc1ae3a87 Mon Sep 17 00:00:00 2001 From: Mikael Nousiainen Date: Tue, 12 Jan 2021 23:01:54 +0200 Subject: [PATCH] All Yaesu newcat rigs use the same format for turning CTCSS ON/OFF --- rigs/yaesu/newcat.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index d5863a755..ad8515c40 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -2519,17 +2519,8 @@ int newcat_set_ctcss_tone(RIG *rig, vfo_t vfo, tone_t tone) if (tone == 0) /* turn off ctcss */ { - if (is_ft891 || is_ft991 || is_ftdx101) - { - // note ftdx101 cat manual says CTP1P2; not CTP1P2P3; so is this correct? - snprintf(priv->cmd_str, sizeof(priv->cmd_str), "CT%c00%c", main_sub_vfo, - cat_term); - } - else - { - snprintf(priv->cmd_str, sizeof(priv->cmd_str), "CT%c0%c", main_sub_vfo, - cat_term); - } + snprintf(priv->cmd_str, sizeof(priv->cmd_str), "CT%c0%c", main_sub_vfo, + cat_term); } else {