From 76635932a235e123bb3d88cc8b6a9e659af94bb7 Mon Sep 17 00:00:00 2001 From: Jim Colderwood Date: Thu, 4 Apr 2024 11:32:59 +0100 Subject: [PATCH] Fixed flapping bug --- GB3TX/repeater.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GB3TX/repeater.ino b/GB3TX/repeater.ino index 1ab3b0f..cc82362 100644 --- a/GB3TX/repeater.ino +++ b/GB3TX/repeater.ino @@ -26,7 +26,7 @@ void rx(repeater* myrpt) { return; } - if (myrpt->gateway.transmitter.tx) { + if (myrpt->receiver.rx && myrpt->gateway.transmitter.tx) { digitalWrite(GWPTT, false); myrpt->gateway.transmitter.tx = false; }