Browse Source
Merge pull request #14 from rejoe2/dynamic-retries-1
fix 2nd frame detection
pull/1394/head
rejoe2
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
5 deletions
-
src/hm/Communication.h
-
src/hms/hmsRadio.h
|
|
@ -86,7 +86,7 @@ class Communication : public CommQueue<> { |
|
|
|
mIsRetransmit = false; |
|
|
|
if(NULL == q->iv->radio) |
|
|
|
cmdDone(false); // can't communicate while radio is not defined!
|
|
|
|
mFirstTry = q->iv->isAvailable(); |
|
|
|
mFirstTry = INV_RADIO_TYPE_NRF == q->iv->ivRadioType && q->iv->isAvailable(); |
|
|
|
q->iv->mCmd = q->cmd; |
|
|
|
q->iv->mIsSingleframeReq = false; |
|
|
|
mFramesExpected = getFramesExpected(q); // function to get expected frame count.
|
|
|
@ -185,7 +185,7 @@ class Communication : public CommQueue<> { |
|
|
|
if (p->packet[0] == (TX_REQ_INFO + ALL_FRAMES)) { // response from get information command
|
|
|
|
if(parseFrame(p)) { |
|
|
|
q->iv->curFrmCnt++; |
|
|
|
if(!mIsRetransmit && p->packet[9] == 2 && p->millis < 85) |
|
|
|
if(!mIsRetransmit && (p->packet[9] == 0x02 || p->packet[9] == 0x82) && p->millis < 85) |
|
|
|
mHeu.setIvRetriesGood(q->iv,p->millis < 70); |
|
|
|
} |
|
|
|
} else if (p->packet[0] == (TX_REQ_DEVCONTROL + ALL_FRAMES)) { // response from dev control command
|
|
|
@ -444,7 +444,6 @@ class Communication : public CommQueue<> { |
|
|
|
record_t<> *rec = q->iv->getRecordStruct(RealTimeRunData_Debug); // choose the record structure
|
|
|
|
rec->ts = q->ts; |
|
|
|
miStsConsolidate(q, ((p->packet[0] == 0x88) ? 1 : 2), rec, p->packet[10], p->packet[12], p->packet[9], p->packet[11]); |
|
|
|
//mHeu.setGotFragment(q->iv); only do this when we are through the cycle?
|
|
|
|
} |
|
|
|
|
|
|
|
return true; |
|
|
|
|
|
@ -166,9 +166,10 @@ class CmtRadio : public Radio { |
|
|
|
mBufCtrl.push(p); |
|
|
|
|
|
|
|
// this code completly stops communication!
|
|
|
|
//if(p.packet[9] > ALL_FRAMES) // indicates last frame
|
|
|
|
if(p.packet[9] > ALL_FRAMES) // indicates last frame
|
|
|
|
// mRadioWaitTime.stopTimeMonitor(); // we got everything we expected and can exit rx mode...
|
|
|
|
//optionally instead: mRadioWaitTime.startTimeMonitor(DURATION_PAUSE_LASTFR); // let the inverter first get back to rx mode?
|
|
|
|
//optionally instead:
|
|
|
|
mRadioWaitTime.startTimeMonitor(DURATION_PAUSE_LASTFR); // let the inverter first get back to rx mode?
|
|
|
|
} |
|
|
|
|
|
|
|
CmtType mCmt; |
|
|
|