summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2020-06-03 11:16:37 +0300
committerSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2020-06-03 11:16:37 +0300
commit406cce9d517465698bd6f60c788b01c0e9f8e32e (patch)
treeb726bc7e2a7e2d40a318fc32fed92ea3dad265f3
parent42d384984b2f760bc8f7a69c7ea3464c73f4d892 (diff)
downloadlibmts-io-406cce9d517465698bd6f60c788b01c0e9f8e32e.tar.gz
libmts-io-406cce9d517465698bd6f60c788b01c0e9f8e32e.tar.bz2
libmts-io-406cce9d517465698bd6f60c788b01c0e9f8e32e.zip
[GP-651] LNA7: Allow to start the OMA DM procedure when it is required
Fixed AT+QODM parameters. AT+QODM parameters are case-sensitive.
-rw-r--r--src/MTS_IO_QuectelRadio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MTS_IO_QuectelRadio.cpp b/src/MTS_IO_QuectelRadio.cpp
index b750bd6..5d29be7 100644
--- a/src/MTS_IO_QuectelRadio.cpp
+++ b/src/MTS_IO_QuectelRadio.cpp
@@ -454,7 +454,7 @@ ICellularRadio::CODE QuectelRadio::startOmaDm(ICellularRadio::UpdateCb& stepCb)
do {
// Send command and expect "OK" in iTimeoutOk milliseconds
- eCode = sendBasicCommand("AT+QODM=\"DME\",2,\"UI\"", iTimeoutOk);
+ eCode = sendBasicCommand("AT+QODM=\"dme\",2,\"ui\"", iTimeoutOk);
if (eCode != SUCCESS) {
printError("%s| OMA DM procedure can not be started", getName().c_str());
if (stepCb) {