diff options
author | Mykola Salomatin <mykola.salomatin@globallogic.com> | 2023-02-01 20:14:39 +0200 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2023-03-13 10:59:01 -0500 |
commit | 089e6ac4e67504958129a1f33cf85af9bfd6a8d5 (patch) | |
tree | ab17d0efe07e17bee8510abfaef77b2b9d73d53c | |
parent | b3abb0d073b7484c6e4838a8ad13135e54e79d46 (diff) | |
download | libmts-io-089e6ac4e67504958129a1f33cf85af9bfd6a8d5.tar.gz libmts-io-089e6ac4e67504958129a1f33cf85af9bfd6a8d5.tar.bz2 libmts-io-089e6ac4e67504958129a1f33cf85af9bfd6a8d5.zip |
[MTX-4769] mPower R.6.3.X: L6G1 Support - Cellular Diagnostics
Add additional command about all carrier profiles that are supported.
-rw-r--r-- | src/MTS_IO_LE910Radio.cpp | 6 | ||||
-rw-r--r-- | src/MTS_IO_QuectelRadio.cpp | 3 | ||||
-rw-r--r-- | src/MTS_IO_TelitRadio.cpp | 3 |
3 files changed, 12 insertions, 0 deletions
diff --git a/src/MTS_IO_LE910Radio.cpp b/src/MTS_IO_LE910Radio.cpp index 3b2864b..81adb0a 100644 --- a/src/MTS_IO_LE910Radio.cpp +++ b/src/MTS_IO_LE910Radio.cpp @@ -171,6 +171,9 @@ const std::vector<std::string>& LE910Radio::getDiagCommands(bool bIsSimReady) { // Radio model and firmware: "AT+CGMI", "AT+CGMM", "AT+CGMR", "AT#SWPKGV", "AT#CFVR", + // All carrier profiles that are supported: + "AT#FWSWITCH=?", + // Current operator profile on the radio side: "AT#FWSWITCH?", "AT+CGSN", @@ -198,6 +201,9 @@ const std::vector<std::string>& LE910Radio::getDiagCommands(bool bIsSimReady) { // Radio model and firmware: "AT+CGMI", "AT+CGMM", "AT+CGMR", "AT#SWPKGV", "AT#CFVR", + // All carrier profiles that are supported: + "AT#FWSWITCH=?", + // Current operator profile on the radio side: "AT#FWSWITCH?", "AT+CGSN", diff --git a/src/MTS_IO_QuectelRadio.cpp b/src/MTS_IO_QuectelRadio.cpp index af7adde..0c0c8ab 100644 --- a/src/MTS_IO_QuectelRadio.cpp +++ b/src/MTS_IO_QuectelRadio.cpp @@ -1635,6 +1635,9 @@ const std::vector<std::string>& QuectelRadio::getDiagCommands(bool) { // Radio model and firmware: "AT+CGMI", "AT+CGMM", "AT+CGMR", "AT+QGMR", + // All carrier profiles that are supported: + "AT+QMBNCFG=\"LIST\"", + // Current operator profile on the radio side: "AT+QMBNCFG=\"SELECT\"", "AT+CGSN", diff --git a/src/MTS_IO_TelitRadio.cpp b/src/MTS_IO_TelitRadio.cpp index 704f692..21af65d 100644 --- a/src/MTS_IO_TelitRadio.cpp +++ b/src/MTS_IO_TelitRadio.cpp @@ -1184,6 +1184,9 @@ const std::vector<std::string>& TelitRadio::getDiagCommands(bool) { // Radio model and firmware: "AT+CGMI", "AT+CGMM", "AT+CGMR", "AT#SWPKGV", "AT#CFVR", + // All carrier profiles that are supported: + "AT#FWSWITCH=?", + // Current operator profile on the radio side: "AT#FWSWITCH?", "AT+CGSN", |