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 /src/MTS_IO_CdmaRadio.cpp | |
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 'src/MTS_IO_CdmaRadio.cpp')
-rw-r--r-- | src/MTS_IO_CdmaRadio.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/MTS_IO_CdmaRadio.cpp b/src/MTS_IO_CdmaRadio.cpp index f84fd34..de02055 100644 --- a/src/MTS_IO_CdmaRadio.cpp +++ b/src/MTS_IO_CdmaRadio.cpp @@ -1290,6 +1290,16 @@ ICellularRadio::CODE CdmaRadio::getNetworkStatus(Json::Value& jData) { return SUCCESS; } +ICellularRadio::CODE CdmaRadio::getSimMccMnc(std::string&) { + printTrace("%s| Get MCC/MNC of the home network from the SIM: not applicable", getName().c_str()); + return NOT_APPLICABLE; +} + +ICellularRadio::CODE CdmaRadio::getSimMccMnc(std::string&, std::string&) { + printTrace("%s| Get MCC/MNC of the home network from the SIM: not applicable", getName().c_str()); + return NOT_APPLICABLE; +} + std::string CdmaRadio::getMeidLastSix() { std::string sMeid; if(getMeid(sMeid) != SUCCESS || sMeid.size() != 14) { |