You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compliance script might call doSend() while the LMIC is still active. In that case, it will print OP_TXRXPEND, not sending, and will never send again.
Solution: call sendComplete(j, 0), which will schedule another uplink after a delay.
The text was updated successfully, but these errors were encountered:
The compliance script might call
doSend()
while the LMIC is still active. In that case, it will printOP_TXRXPEND, not sending
, and will never send again.Solution: call
sendComplete(j, 0)
, which will schedule another uplink after a delay.The text was updated successfully, but these errors were encountered: