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 a679639 commit f986493Copy full SHA for f986493
src/lmic/lmic.c
@@ -1721,7 +1721,7 @@ static bit_t processJoinAccept_nojoinframe(void) {
1721
reportEventNoUpdate(EV_JOIN_TXCOMPLETE);
1722
int failed = LMICbandplan_nextJoinState();
1723
1724
- if((LMIC.txend - LMIC.globalDutyAvail) < 0) {
+ if(LMIC.globalDutyRate != 0 && (LMIC.txend - LMIC.globalDutyAvail) < 0) {
1725
LMIC.txend = LMIC.globalDutyAvail;
1726
// Add random delay 10s is arbitrary
1727
LMIC.txend += LMICcore_rndDelay(10);
0 commit comments