From d541a1102adc723e71c63f104351d462caeb7310 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niccol=C3=B2=20Betto?= <niccolo.betto@skywarder.eu>
Date: Thu, 13 Mar 2025 12:07:17 +0100
Subject: [PATCH] [ConRIG] Lower radio beep period to 5 seconds
Less annoying, still as useful as before. You're expected to read full telemetry from a PC anyway...
---
src/ConRIG/Radio/Radio.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ConRIG/Radio/Radio.cpp b/src/ConRIG/Radio/Radio.cpp
index af3e1cf78..f6b4807cb 100644
--- a/src/ConRIG/Radio/Radio.cpp
+++ b/src/ConRIG/Radio/Radio.cpp
@@ -145,7 +145,7 @@ void Radio::loopBuzzer()
Thread::sleep(100);
// Doesn't matter the precision, the important thing is
// the beep, this is because an atomic is used
- if ((!isArmed && messagesReceived > 2) ||
+ if ((!isArmed && messagesReceived > 10) ||
(isArmed && messagesReceived > 0))
{
messagesReceived = 0;
--
GitLab