diff options
| -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 | 
