diff options
author | Jeff Hatch <jhatch@multitech.com> | 2020-02-19 09:00:55 -0600 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2020-02-19 09:00:55 -0600 |
commit | 545778caa05a2bc1ee3bfdeac2b48c8b51c54d64 (patch) | |
tree | 1f235ce6514c839c3838bcd9d382c5f15f2fc315 | |
parent | f3425f9f5b32060895b7cd33d337b7ac50f9e714 (diff) | |
parent | 8ecb83caf734f573666ca01a1864a44e6df820fd (diff) | |
download | libmts-io-545778caa05a2bc1ee3bfdeac2b48c8b51c54d64.tar.gz libmts-io-545778caa05a2bc1ee3bfdeac2b48c8b51c54d64.tar.bz2 libmts-io-545778caa05a2bc1ee3bfdeac2b48c8b51c54d64.zip |
Merge branch 'MTX-3232-static-supported-modes' into 'master'
[MTX-3232] Add "supportedCellularModes" value to the radio-query --static
See merge request !11
-rw-r--r-- | include/mts/MTS_IO_ICellularRadio.h | 1 | ||||
-rw-r--r-- | src/MTS_IO_ICellularRadio.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/mts/MTS_IO_ICellularRadio.h b/include/mts/MTS_IO_ICellularRadio.h index 57d6f53..f03bd2e 100644 --- a/include/mts/MTS_IO_ICellularRadio.h +++ b/include/mts/MTS_IO_ICellularRadio.h @@ -126,6 +126,7 @@ namespace MTS { static const char *KEY_CARRIER; //!< Cellular Service Provider (Home Network) static const char *KEY_ICCID; //!< Integrated Circuit Card Identifier static const char *KEY_MSL; //!< Master Subsidy Lock + static const char *KEY_SUPPORTED_CELL_MODES; //!< Comma-separated list of all supported cellular modes (2g,3g,4g) //Network Status Data diff --git a/src/MTS_IO_ICellularRadio.cpp b/src/MTS_IO_ICellularRadio.cpp index 89318ef..f7a5fe8 100644 --- a/src/MTS_IO_ICellularRadio.cpp +++ b/src/MTS_IO_ICellularRadio.cpp @@ -49,6 +49,7 @@ const char *MTS::IO::ICellularRadio::KEY_MSID = "msid"; //!< Mobil Stat const char *MTS::IO::ICellularRadio::KEY_MDN = "mdn"; //!< Mobile Directory Number : Actual phone number dialed to reach radio const char *MTS::IO::ICellularRadio::KEY_ICCID = "iccid"; //!< Integrated Circuit Card Identifier const char *MTS::IO::ICellularRadio::KEY_MSL = "msl"; //!< Master Subsidy Lock +const char *MTS::IO::ICellularRadio::KEY_SUPPORTED_CELL_MODES = "supportedCellularModes"; //!< Comma-separated list of all supported cellular modes (2g,3g,4g) //Dynamic Data const char *MTS::IO::ICellularRadio::KEY_ROAMING = "roaming"; //!< Indicates whether or not using Home Network |