Skip to content
Snippets Groups Projects
Commit e1dddd95 authored by Sandeep Mistry's avatar Sandeep Mistry Committed by Cristian Maglie
Browse files

Hold reset high to prevent cellular modem from starting if not used

parent 3d82fa44
No related branches found
No related tags found
No related merge requests found
......@@ -209,6 +209,10 @@ void initVariant() {
// Workaround for RTS not being controlled correctly
pinMode(GSM_RTS, OUTPUT);
digitalWrite(GSM_RTS, LOW);
// Hold reset high to prevent cellular modem from starting if not used
pinMode(GSM_RESETN, OUTPUT);
digitalWrite(GSM_RESETN, HIGH);
}
// Serial1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment