Skip to content

Fix hardReset method to match the datasheet #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Modem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void ModemClass::hardReset()
{
// Hardware pin reset, only use in EMERGENCY
digitalWrite(_resetPin, HIGH);
delay(1000); // Datasheet says nothing, so guess we wait one second
delay(10000); // Datasheet says 10s minimum low pulse on reset pin.
digitalWrite(_resetPin, LOW);
setVIntPin(SARA_VINT_OFF);
}
Expand Down