diff options
author | Jeff Hatch <jhatch@multitech.com> | 2021-06-02 14:55:50 -0500 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2021-06-02 14:55:50 -0500 |
commit | 8eb97c149a08f6ec9d938be53868ee426895bf0e (patch) | |
tree | fed63fa776088659855a9ae3b2c7f5d221ec3a25 /include/mts/MTS_IO_ICellularRadio.h | |
parent | bcd5443bcfff3e17ee120c305bbfd0ce2c812b21 (diff) | |
parent | bc2875140ba6a91eaeab8e9626a212986dcf5d4d (diff) | |
download | libmts-io-1.0.26.tar.gz libmts-io-1.0.26.tar.bz2 libmts-io-1.0.26.zip |
Merge branch 'sk/GP-1111-carrier-detection' into 'master'
1.0.26
[GP-1111] mPower R. Apr 2021: +CEMODE shall be set to CEMODE=2
See merge request !40
Diffstat (limited to 'include/mts/MTS_IO_ICellularRadio.h')
-rw-r--r-- | include/mts/MTS_IO_ICellularRadio.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/mts/MTS_IO_ICellularRadio.h b/include/mts/MTS_IO_ICellularRadio.h index e638e8b..58329c4 100644 --- a/include/mts/MTS_IO_ICellularRadio.h +++ b/include/mts/MTS_IO_ICellularRadio.h @@ -151,6 +151,8 @@ namespace MTS { 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) static const char *KEY_SIM_CARRIER_CODE; //!< Unique carrier identifier based on the SIM card information. + static const char *KEY_SIM_MCC; //!< MCC of the home network from the SIM. + static const char *KEY_SIM_MNC; //!< MNC of the home network from the SIM. //Network Status Data @@ -576,6 +578,20 @@ namespace MTS { virtual CODE setUeModeOfOperation(ICellularRadio::UE_MODES_OF_OPERATION mode) = 0; virtual CODE getUeModeOfOperation(ICellularRadio::UE_MODES_OF_OPERATION& mode) = 0; + + /** + * @brief getSimMccMnc - get MCC/MNC (PLMN code) of the home network from the SIM. + * + * @param sPlmnId - a string to be filled with the MCC/MNC combination, + * example: "310410" (for AT&T), "90118" (for WMS). + * @return CODE::SUCCESS when fetched successfully, + * CODE::NOT_APPLICABLE when the modem doesn't support this feature, + * CODE::NO_RESPONSE when the modem doesn't respond, + * CODE::ERROR when the radio returns "ERROR" (SIM card removed, SIM card locked etc), + * CODE::FAILURE otherwise (unexpected response, no data in SIM etc). + */ + virtual CODE getSimMccMnc(std::string& sMccMnc) = 0; + virtual CODE getSimMccMnc(std::string& sMcc, std::string& sMnc) = 0; }; } } |