diff options
author | Serhii Kostiuk <serhii.o.kostiuk@globallogic.com> | 2019-06-24 11:30:51 +0300 |
---|---|---|
committer | Serhii Kostiuk <serhii.o.kostiuk@globallogic.com> | 2019-06-24 11:47:11 +0300 |
commit | 83c86fe26b69439f75c893618114d16be0d1d2e8 (patch) | |
tree | 4608bf8e5b881016fd74d2caa5a426ba9f9ad438 /src/MTS_IO_ICellularRadio.cpp | |
parent | 143feb6a4587817d28c77e4df3a1b594b855f5e5 (diff) | |
parent | 28ce5eaaa648670a2c83d583ebff2dc517af002e (diff) | |
download | libmts-io-83c86fe26b69439f75c893618114d16be0d1d2e8.tar.gz libmts-io-83c86fe26b69439f75c893618114d16be0d1d2e8.tar.bz2 libmts-io-83c86fe26b69439f75c893618114d16be0d1d2e8.zip |
Merge branch 'mtr-mtq-sim-status' into quectel-radio
Diffstat (limited to 'src/MTS_IO_ICellularRadio.cpp')
-rw-r--r-- | src/MTS_IO_ICellularRadio.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/MTS_IO_ICellularRadio.cpp b/src/MTS_IO_ICellularRadio.cpp index 7f216d0..4e7809e 100644 --- a/src/MTS_IO_ICellularRadio.cpp +++ b/src/MTS_IO_ICellularRadio.cpp @@ -94,6 +94,12 @@ const char *MTS::IO::ICellularRadio::VALUE_TYPE_GSM = "GSM"; const char *MTS::IO::ICellularRadio::VALUE_TYPE_LTE = "LTE"; const char *MTS::IO::ICellularRadio::VALUE_TYPE_CDMA = "CDMA"; +const char *MTS::IO::ICellularRadio::KEY_IS_SIM_INSERTED = "isSimInserted"; //!< SIM card insertion indicator. True when a SIM card is inserted +const char *MTS::IO::ICellularRadio::KEY_IS_SIM_LOCKED = "isSimLocked"; //!< SIM card lock status indicator. True when a SIM card is locked by PIN / PUK / other code +const char *MTS::IO::ICellularRadio::KEY_SIM_LOCK_STATUS = "lockStatus"; //!< SIM card lock status string. Either "READY", "SIM PIN", "SIM PUK" or other state +const char *MTS::IO::ICellularRadio::KEY_ATTEMPTS_PIN = "attemptsPin"; //!< The number of attempts left to unlock the SIM card using PIN code +const char *MTS::IO::ICellularRadio::KEY_ATTEMPTS_PUK = "attemptsPuk"; //!< The number of attempts left to unlock the SIM card using PUK code + const char *MTS::IO::ICellularRadio::VALUE_SD_NO_SERVICE = "NO SERVICE"; const char *MTS::IO::ICellularRadio::VALUE_SD_CS_ONLY = "CS ONLY"; const char *MTS::IO::ICellularRadio::VALUE_SD_PS_ONLY = "PS ONLY"; |