|
@ -30,9 +30,9 @@ class Communication : public CommQueue<> { |
|
|
mInverterGap = inverterGap; |
|
|
mInverterGap = inverterGap; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void addImportant(Inverter<> *iv, uint8_t cmd, bool delOnPop = true) { |
|
|
void addImportant(Inverter<> *iv, uint8_t cmd) { |
|
|
mState = States::RESET; // cancel current operation
|
|
|
mState = States::RESET; // cancel current operation
|
|
|
CommQueue::addImportant(iv, cmd, delOnPop); |
|
|
CommQueue::addImportant(iv, cmd); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void addPayloadListener(payloadListenerType cb) { |
|
|
void addPayloadListener(payloadListenerType cb) { |
|
@ -84,7 +84,7 @@ class Communication : public CommQueue<> { |
|
|
q->iv->curFrmCnt = 0; |
|
|
q->iv->curFrmCnt = 0; |
|
|
mIsRetransmit = false; |
|
|
mIsRetransmit = false; |
|
|
if(NULL == q->iv->radio) |
|
|
if(NULL == q->iv->radio) |
|
|
cmdDone(true); // can't communicate while radio is not defined!
|
|
|
cmdDone(false); // can't communicate while radio is not defined!
|
|
|
mState = States::START; |
|
|
mState = States::START; |
|
|
break; |
|
|
break; |
|
|
|
|
|
|
|
@ -177,6 +177,7 @@ class Communication : public CommQueue<> { |
|
|
closeRequest(q, true); |
|
|
closeRequest(q, true); |
|
|
else |
|
|
else |
|
|
closeRequest(q, false); |
|
|
closeRequest(q, false); |
|
|
|
|
|
q->iv->radio->mBufCtrl.pop(); |
|
|
return; // don't wait for empty buffer
|
|
|
return; // don't wait for empty buffer
|
|
|
} else if(IV_MI == q->iv->ivGen) { |
|
|
} else if(IV_MI == q->iv->ivGen) { |
|
|
if(parseMiFrame(p, q)) |
|
|
if(parseMiFrame(p, q)) |
|
@ -399,8 +400,6 @@ class Communication : public CommQueue<> { |
|
|
DBGPRINT(F("CRC Error ")); |
|
|
DBGPRINT(F("CRC Error ")); |
|
|
if(q->attempts == 0) { |
|
|
if(q->attempts == 0) { |
|
|
DBGPRINTLN(F("-> Fail")); |
|
|
DBGPRINTLN(F("-> Fail")); |
|
|
/*q->iv->radioStatistics.rxFail++; // got fragments but not complete response
|
|
|
|
|
|
cmdDone();*/ |
|
|
|
|
|
closeRequest(q, false); |
|
|
closeRequest(q, false); |
|
|
|
|
|
|
|
|
} else |
|
|
} else |
|
@ -502,12 +501,15 @@ class Communication : public CommQueue<> { |
|
|
q->iv->radioStatistics.rxSuccess++; |
|
|
q->iv->radioStatistics.rxSuccess++; |
|
|
else if(q->iv->mGotFragment) |
|
|
else if(q->iv->mGotFragment) |
|
|
q->iv->radioStatistics.rxFail++; // got no complete payload
|
|
|
q->iv->radioStatistics.rxFail++; // got no complete payload
|
|
|
else { |
|
|
else |
|
|
q->iv->radioStatistics.rxFailNoAnser++; // got nothing
|
|
|
q->iv->radioStatistics.rxFailNoAnser++; // got nothing
|
|
|
} |
|
|
|
|
|
mWaitTimeout = millis() + *mInverterGap; |
|
|
mWaitTimeout = millis() + *mInverterGap; |
|
|
|
|
|
|
|
|
cmdDone(q->delOnPop); |
|
|
bool keep = false; |
|
|
|
|
|
if(q->isDevControl) |
|
|
|
|
|
keep = !crcPass; |
|
|
|
|
|
|
|
|
|
|
|
cmdDone(keep); |
|
|
q->iv->mGotFragment = false; |
|
|
q->iv->mGotFragment = false; |
|
|
q->iv->mGotLastMsg = false; |
|
|
q->iv->mGotLastMsg = false; |
|
|
q->iv->miMultiParts = 0; |
|
|
q->iv->miMultiParts = 0; |
|
@ -836,7 +838,7 @@ class Communication : public CommQueue<> { |
|
|
//closeRequest(iv, iv->miMultiParts > 5);
|
|
|
//closeRequest(iv, iv->miMultiParts > 5);
|
|
|
|
|
|
|
|
|
//mHeu.setGotAll(iv);
|
|
|
//mHeu.setGotAll(iv);
|
|
|
//cmdDone(true);
|
|
|
//cmdDone(false);
|
|
|
if(NULL != mCbPayload) |
|
|
if(NULL != mCbPayload) |
|
|
(mCbPayload)(RealTimeRunData_Debug, iv); |
|
|
(mCbPayload)(RealTimeRunData_Debug, iv); |
|
|
|
|
|
|
|
|