Skip to content

Commit 482e928

Browse files
authored
Fix hardReset method to match the datasheet (#70)
1 parent 58bc11d commit 482e928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Modem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ void ModemClass::hardReset()
131131
{
132132
// Hardware pin reset, only use in EMERGENCY
133133
digitalWrite(_resetPin, HIGH);
134-
delay(1000); // Datasheet says nothing, so guess we wait one second
134+
delay(10000); // Datasheet says 10s minimum low pulse on reset pin.
135135
digitalWrite(_resetPin, LOW);
136136
setVIntPin(SARA_VINT_OFF);
137137
}

0 commit comments

Comments
 (0)