We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d82fa4 commit e1dddd9Copy full SHA for e1dddd9
variants/mkrgsm1400/variant.cpp
@@ -209,6 +209,10 @@ void initVariant() {
209
// Workaround for RTS not being controlled correctly
210
pinMode(GSM_RTS, OUTPUT);
211
digitalWrite(GSM_RTS, LOW);
212
+
213
+ // Hold reset high to prevent cellular modem from starting if not used
214
+ pinMode(GSM_RESETN, OUTPUT);
215
+ digitalWrite(GSM_RESETN, HIGH);
216
}
217
218
// Serial1
0 commit comments