From dfcd8104f8d6756c88920f65065e1a727828aff5 Mon Sep 17 00:00:00 2001 From: Jim Colderwood Date: Fri, 5 Apr 2024 12:03:54 +0100 Subject: [PATCH] Attenuate cw until routine is finished --- GB3TX/cw.ino | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/GB3TX/cw.ino b/GB3TX/cw.ino index bbe697e..ca0fefa 100644 --- a/GB3TX/cw.ino +++ b/GB3TX/cw.ino @@ -53,11 +53,9 @@ void sendID(repeater* myrpt) { sendChar(myrpt->params.cw_speed, myrpt->params.cw_pitch, myrpt->callsign[i]); delay(myrpt->params.cw_speed * 3); - - if (!busy(myrpt) && pip_att) { - pip_att = false; - digitalWrite(PIP_ATT, LOW); - } + } + if (pip_att) { + digitalWrite(PIP_ATT, LOW); } }