From 6ec9561d7a1e99348bfe51fd8d3ae902dd3010b6 Mon Sep 17 00:00:00 2001 From: rejoe2 Date: Thu, 28 Dec 2023 12:16:02 +0100 Subject: [PATCH] discord .2902 - disable cmdDone() calls for GridProfile+GetLossRate - Typo --- src/hm/Communication.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hm/Communication.h b/src/hm/Communication.h index a0e593c2..bc6f9f38 100644 --- a/src/hm/Communication.h +++ b/src/hm/Communication.h @@ -308,7 +308,7 @@ class Communication : public CommQueue<> { else ah::dumpBuf(p->packet, p->len); } else { - DBGPRINT(F("| 0x")); + DBGPRINT(F("| ")); DHEX(p->packet[0]); DBGPRINT(F(" ")); DBGHEXLN(p->packet[9]); @@ -466,7 +466,7 @@ class Communication : public CommQueue<> { q->iv->addGridProfile(mPayload, len); q->iv->radioStatistics.rxSuccess++; mHeu.evalTxChQuality(q->iv, true, (7 - q->attempts), q->iv->curFrmCnt); - cmdDone(false); + //cmdDone(false); return; } @@ -477,7 +477,7 @@ class Communication : public CommQueue<> { //closeRequest(q, true); //@lumapu: Activating would crash most esp's! mHeu.evalTxChQuality(q->iv, true, (9 - q->attempts), q->iv->curFrmCnt); q->iv->radioStatistics.rxSuccess++; - cmdDone(false); + //cmdDone(false); return; } else { DPRINTLN(DBG_ERROR, F("record is NULL!"));