From 24f50c3a983486c5f4ed4c7b6bebf661119b72b8 Mon Sep 17 00:00:00 2001 From: GlassOnTin Date: Tue, 7 Apr 2026 12:28:56 +0100 Subject: [PATCH] Increment stat_tx in beacon_transmit() for LoRa complication TX count --- RNode_Firmware.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/RNode_Firmware.ino b/RNode_Firmware.ino index 13aac8b..27ce0c4 100644 --- a/RNode_Firmware.ino +++ b/RNode_Firmware.ino @@ -1019,6 +1019,7 @@ void beacon_transmit(uint16_t size) { if (!LoRa->endPacket()) { led_indicate_error(5); } + stat_tx++; add_airtime(size); lora_receive(); }