From 406cce9d517465698bd6f60c788b01c0e9f8e32e Mon Sep 17 00:00:00 2001 From: Serhii Kostiuk Date: Wed, 3 Jun 2020 11:16:37 +0300 Subject: [GP-651] LNA7: Allow to start the OMA DM procedure when it is required Fixed AT+QODM parameters. AT+QODM parameters are case-sensitive. --- src/MTS_IO_QuectelRadio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3