From 4aedb18865c9c6d38d1f627b9856955e121e23b7 Mon Sep 17 00:00:00 2001 From: Dave Behnke <916775+dbehnke@users.noreply.github.com> Date: Sun, 28 Dec 2025 11:12:01 -0500 Subject: [PATCH] Add debug logs to M17 HandleQueue --- reflector/M17Protocol.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reflector/M17Protocol.cpp b/reflector/M17Protocol.cpp index 1ffa7c6..fa7e48b 100644 --- a/reflector/M17Protocol.cpp +++ b/reflector/M17Protocol.cpp @@ -390,6 +390,9 @@ void CM17Protocol::HandleQueue(void) offset = (seq % 2) * 8; } + // std::cout << "DEBUG: HandleQueue Mod=" << module << " Seq=" << seq << " Offset=" << offset << " BufSizeBefore=" << buf.size() << std::endl; + std::cout << "DEBUG: HandleQueue Mod=" << module << " Seq=" << seq << " Offset=" << offset << " BufSizeBefore=" << buf.size() << std::endl; + buf.insert(buf.end(), data + offset, data + offset + bytesPerFrame); // Do we have enough for a full M17 frame? (2x input frames)