We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b75780 commit 4b59b2fCopy full SHA for 4b59b2f
src/lmic/lmic.c
@@ -1711,7 +1711,7 @@ static bit_t processJoinAccept_nojoinframe(void) {
1711
reportEventNoUpdate(EV_JOIN_TXCOMPLETE);
1712
int failed = LMICbandplan_nextJoinState();
1713
1714
- if((LMIC.txend - LMIC.globalDutyAvail) < 0) {
+ if(LMIC.globalDutyRate != 0 && (LMIC.txend - LMIC.globalDutyAvail) < 0) {
1715
LMIC.txend = LMIC.globalDutyAvail;
1716
// Add random delay 10s is arbitrary
1717
LMIC.txend += LMICcore_rndDelay(10);
0 commit comments