Fork of ublox-cellular-base to add LARA-R2 support
Fork of ublox-cellular-base by
Diff: UbloxCellularBase.cpp
- Revision:
- 18:eb3480afeae0
- Parent:
- 17:a01b693a2e63
- Child:
- 20:9fedc922868e
diff -r a01b693a2e63 -r eb3480afeae0 UbloxCellularBase.cpp --- a/UbloxCellularBase.cpp Mon Sep 10 18:44:17 2018 -0500 +++ b/UbloxCellularBase.cpp Wed Sep 26 11:38:31 2018 -0500 @@ -580,8 +580,9 @@ } // Turn off modem echoing and turn on verbose responses - success = _at->send("ATE0;+CMEE=2") && _at->recv("OK") && + success = _at->send("ATE0") && _at->recv("OK") && // The following commands are best sent separately + _at->send("AT+CMEE=2") && _at->recv("OK") && _at->send("AT&K0") && _at->recv("OK") && // Turn off RTC/CTS handshaking _at->send("AT&C1") && _at->recv("OK") && // Set DCD circuit(109), changes in accordance with the carrier detect status _at->send("AT&D0") && _at->recv("OK"); // Set DTR circuit, we ignore the state change of DTR