From 5da5645c2dad56eb9654e4fbe7b9c070cb997e5d Mon Sep 17 00:00:00 2001 From: Yevhen Mykhno Date: Tue, 31 Jan 2023 13:26:34 +0200 Subject: [GP-1733] mPower R.6.3.X: L6G1 Support - libmts-io, radio-cmd, radio-query - function getRegistrationCommands() implemented as pure virtual and overrided for every base radio model - minor indentation fixes - function getSimStatusSummary(Json::Value& jData) changed to process radio modems that do not have separate commands for the SIM presence check - function getManufacturer(std::string& sManufacturer) changed: AT command changet to 'AT+CGMI' - src/MTS_IO_QuectelRadio.cpp -- comments correction --- src/MTS_IO_LE910Radio.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/MTS_IO_LE910Radio.cpp') diff --git a/src/MTS_IO_LE910Radio.cpp b/src/MTS_IO_LE910Radio.cpp index 2f1debb..3b2864b 100644 --- a/src/MTS_IO_LE910Radio.cpp +++ b/src/MTS_IO_LE910Radio.cpp @@ -64,7 +64,7 @@ ICellularRadio::CODE LE910Radio::getModemLocation(std::string& sLocation) { } printDebug("modem reply: [%s]", sResult.c_str()); size_t start = sResult.find(':'); - if (start==std::string::npos){ + if (start==std::string::npos) { start = 0; } else { start++; @@ -230,3 +230,7 @@ const std::vector& LE910Radio::getDiagCommands(bool bIsSimReady) { return vSimLockedCommands; } } + +const std::vector LE910Radio::getRegistrationCommands() { + return { "CREG", "CGREG", "CEREG" }; +} -- cgit v1.2.3