Skip to content

Commit 20cfad1

Browse files
Don't use RESET_N pin
Data sheet discourages use of SARA modem reset pin, use may lead to irrecoverable state of modem
1 parent 166478f commit 20cfad1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

variants/mkrnb1500/variant.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,10 @@ void initVariant() {
252252
pinMode(SARA_PWR_ON, OUTPUT);
253253
digitalWrite(SARA_PWR_ON, LOW);
254254

255-
// put SARA modem in reset on start to conserve power if it's not used
255+
// data sheet discourages use of SARA modem reset pin
256+
// use may lead to irrecoverable state of modem
256257
pinMode(SARA_RESETN, OUTPUT);
257-
digitalWrite(SARA_RESETN, HIGH);
258+
digitalWrite(SARA_RESETN, LOW);
258259

259260
// set RTS to LOW
260261
pinMode(SARA_RTS, OUTPUT);

0 commit comments

Comments
 (0)