From be9de4a2f637492f5f7d5ba26840ce8b1f2d8467 Mon Sep 17 00:00:00 2001 From: Matt Way Date: Mon, 12 Feb 2024 22:59:50 +1100 Subject: [PATCH] Add log when attempting to send a packet --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index 1ec2775..59f490e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -217,6 +217,7 @@ bool sendFetchPosition(uint16_t destination) { } bool sendPacket(Packet *packet) { + Serial.println("Attempting to send a packet"); packet->rollingCode1 = lastRollingCode1 + 1; packet->rollingCode2 = lastRollingCode2 + 1;