From 0360085131c19ed7edeb20761b2babe3632b1c5d Mon Sep 17 00:00:00 2001 From: richonguzman Date: Sat, 16 Nov 2024 08:13:29 -0300 Subject: [PATCH] minor code cleaning --- src/station_utils.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/station_utils.cpp b/src/station_utils.cpp index 9ad11e7..270fa61 100644 --- a/src/station_utils.cpp +++ b/src/station_utils.cpp @@ -70,7 +70,6 @@ namespace STATION_Utils { Utils::println(" ---> Station not Heard for last 30 min (Not Tx)\n"); return false; } - void clean25SegBuffer() { if (!packet25SegBuffer.empty() && (millis() - packet25SegBuffer[0].receivedTime) > 25 * 1000) packet25SegBuffer.erase(packet25SegBuffer.begin()); }