diff options
author | Jeff Hatch <jhatch@multitech.com> | 2020-06-30 08:39:03 -0500 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2020-06-30 08:39:03 -0500 |
commit | 343e662b6224cf03fea5ebfd419c7cf990528b53 (patch) | |
tree | e5316d29beba3d8c0d1fd791e0e7bac73aa8cfb6 /src/MTS_IO_ICellularRadio.cpp | |
parent | adaca6b0fc6430f38ae3f0551f9a248563ad53b5 (diff) | |
parent | 6b3026ba736d3eef4b7754dfed46e32e45c5a490 (diff) | |
download | libmts-io-343e662b6224cf03fea5ebfd419c7cf990528b53.tar.gz libmts-io-343e662b6224cf03fea5ebfd419c7cf990528b53.tar.bz2 libmts-io-343e662b6224cf03fea5ebfd419c7cf990528b53.zip |
Merge branch 'sk/port-lna7-changes' into 'master'
[MTX-3489] mPower Oct20: Porting "LNA7 Intermediate Release" changes
See merge request !25
Diffstat (limited to 'src/MTS_IO_ICellularRadio.cpp')
-rw-r--r-- | src/MTS_IO_ICellularRadio.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/MTS_IO_ICellularRadio.cpp b/src/MTS_IO_ICellularRadio.cpp index c9bed33..1a428e4 100644 --- a/src/MTS_IO_ICellularRadio.cpp +++ b/src/MTS_IO_ICellularRadio.cpp @@ -50,7 +50,7 @@ const char *MTS::IO::ICellularRadio::KEY_MDN = "mdn"; //!< Mobile Dir 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) - +const char *MTS::IO::ICellularRadio::KEY_SIM_CARRIER_CODE = "simCarrierCode"; //!< Unique carrier identifier based on the SIM card information. //Dynamic Data const char *MTS::IO::ICellularRadio::KEY_ROAMING = "roaming"; //!< Indicates whether or not using Home Network const char *MTS::IO::ICellularRadio::KEY_DATETIME = "datetime"; //!< Date and Time from tower @@ -112,6 +112,9 @@ const char *MTS::IO::ICellularRadio::VALUE_ABND_GSM_900 = "GSM 900"; const char *MTS::IO::ICellularRadio::VALUE_ABND_DCS_1800 = "DCS 1800"; const char *MTS::IO::ICellularRadio::VALUE_ABND_PCS_1900 = "PCS 1900"; +const char *MTS::IO::ICellularRadio::VALUE_CARRIER_CODE_VERIZON = "vz"; +const char *MTS::IO::ICellularRadio::VALUE_CARRIER_CODE_ATT = "att"; + const std::vector<std::string> MTS::IO::ICellularRadio::DEFAULT_BAIL_STRINGS = { MTS::IO::ICellularRadio::RSP_OK, MTS::IO::ICellularRadio::RSP_ERROR }; MTS::IO::ICellularRadio::~ICellularRadio() |