From f99856e863f398c9e2a45ef08d5c46cf337a094e Mon Sep 17 00:00:00 2001 From: Will Tatam Date: Sun, 8 Oct 2023 19:35:26 +0100 Subject: [PATCH] Log packet counters --- usermods/audioreactive/audio_reactive.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usermods/audioreactive/audio_reactive.h b/usermods/audioreactive/audio_reactive.h index c601c0e5..6e0409cd 100644 --- a/usermods/audioreactive/audio_reactive.h +++ b/usermods/audioreactive/audio_reactive.h @@ -1496,7 +1496,7 @@ class AudioReactive : public Usermod { static uint8_t lastFrameCounter = 0; if(receivedPacket->frameCounter <= lastFrameCounter && receivedPacket->frameCounter != 0) { // TODO: might need extra checks here - DEBUGSR_PRINTLN("Skipping audio frame out of order or duplicated"); + DEBUGSR_PRINTF("Skipping audio frame out of order or duplicated - %u vs %u\n", lastFrameCounter, receivedPacket->frameCounter); return; } else {