Skip to content

Commit 497497f

Browse files
committed
type fix for espressif
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent 22fb1e9 commit 497497f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LoRa_AT_mDOT.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ class LoRa_AT_mDOT : public LoRa_AT_Modem<LoRa_AT_mDOT>,
885885
// backoff, whichever is larger.
886886
DBG(GF("Waiting"), max(transmit_wait + 100L, backoff),
887887
GF("ms for a free channel before next join attempt."));
888-
delay(max(transmit_wait + 100L, backoff));
888+
delay(max(transmit_wait + static_cast<uint32_t>(100), backoff));
889889
}
890890
}
891891
return success;

0 commit comments

Comments
 (0)