discord .2902

- disable cmdDone() calls for GridProfile+GetLossRate
- Typo
This commit is contained in:
rejoe2 2023-12-28 12:16:02 +01:00 committed by GitHub
parent e8185b9e80
commit 6ec9561d7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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!"));