Skip to content

Commit 70fb1f1

Browse files
committed
Reduce hard reset time for SAMR34
1 s seems like too much
1 parent db00556 commit 70fb1f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TheThingsNetwork.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1657,7 +1657,7 @@ void TheThingsNetwork::wake(uint8_t interruptPin)
16571657
if(getModemType() == TTN_MODEM_TYPE_SAMR34)
16581658
{
16591659
digitalWrite(interruptPin, LOW);
1660-
delay(1000);
1660+
delay(250);
16611661
digitalWrite(interruptPin, HIGH);
16621662
}
16631663
// for RN2XX3-based boards

0 commit comments

Comments
 (0)