From 3e7f71899c7553f01a965d7a70fe3e982d70b0ad Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Mon, 21 Oct 2024 16:16:26 +0200 Subject: [PATCH] loadRecDataFromFrame(): Move coinAttached from error-state to normal debug output. --- src/datIf.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/datIf.cpp b/src/datIf.cpp index a9f0b29..0d70b65 100755 --- a/src/datIf.cpp +++ b/src/datIf.cpp @@ -720,6 +720,10 @@ char T_datif::loadRecDataFromFrame() if (readSource == 31) { T_dynamicCondition const *dynCond = reinterpret_cast(receivedData); dump(dynCond); + if (dynCond->coinAttached > 0) { + qCritical() << __func__ << ":" << __LINE__ << ": dynCond->coinAttached" + << QByteArray(reinterpret_cast(receivedData), RdDleng).toHex(':'); + } } readCount = writeCount;