From 3c69beef94cfdc955a8d12703acddade4b633781 Mon Sep 17 00:00:00 2001 From: Jm Date: Sat, 26 Dec 2020 23:37:04 -0800 Subject: [PATCH] Update to the airtime calculator. I didn't 0 out the RX log. --- src/airtime.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/airtime.cpp b/src/airtime.cpp index fb2b2251..82f0d3bf 100644 --- a/src/airtime.cpp +++ b/src/airtime.cpp @@ -57,6 +57,8 @@ void airtimeCalculator() airtimes.hourRX_ALL[i + 1] = airtimes.hourRX_ALL[i]; } airtimes.hourTX[0] = 0; + airtimes.hourRX[0] = 0; + airtimes.hourRX_ALL[0] = 0; airtimes.lastHourIndex = currentHourIndex(); }