From 577499f1264310cbda14502841b0a0fbb708bdf0 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Sun, 1 Feb 2026 22:53:34 -0600 Subject: [PATCH] Use Throttle function --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 888b28b2d..08b6707fb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1169,7 +1169,7 @@ void loop() #endif power->powerCommandsCheck(); - if (RadioLibInterface::instance != nullptr && last_listen + 1000 * 60 < millis() && + if (RadioLibInterface::instance != nullptr && !Throttle::isWithinTimespanMs(last_listen, 1000 * 60) && !(RadioLibInterface::instance->isSending() || RadioLibInterface::instance->isActivelyReceiving())) { RadioLibInterface::instance->startReceive(); LOG_DEBUG("attempting AGC reset");