Skip to content

Commit 85f6918

Browse files
committed
add 5ms delay before sending commands in low power mode
1 parent 78d0579 commit 85f6918

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Modem.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ void ModemClass::send(const char* command)
163163
{
164164
if (_lowPowerMode) {
165165
digitalWrite(_dtrPin, LOW);
166+
delay(5);
166167
}
167168

168169
_uart->println(command);

0 commit comments

Comments
 (0)