summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrodion.shyshkin <rodion.shyshkin@globallogic.com>2021-03-31 22:29:58 +0300
committerrodion.shyshkin <rodion.shyshkin@globallogic.com>2021-03-31 22:29:58 +0300
commit2ff46750ec3f1004a5c153944c18dbb081911a03 (patch)
tree462c39deb1e12c5c6c017f49bc245f3d4fc703a6 /include
parent285cee922e229cb1bbd704e6227dbbb3756bd889 (diff)
downloadlibmts-io-2ff46750ec3f1004a5c153944c18dbb081911a03.tar.gz
libmts-io-2ff46750ec3f1004a5c153944c18dbb081911a03.tar.bz2
libmts-io-2ff46750ec3f1004a5c153944c18dbb081911a03.zip
[GP-1111] mPower R. Apr 2021: +CEMODE shall be set to CEMODE=2 - libmts-io for Telit
Changes after a code review
Diffstat (limited to 'include')
-rw-r--r--include/mts/MTS_IO_CellularRadio.h1
-rw-r--r--include/mts/MTS_IO_ICellularRadio.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/include/mts/MTS_IO_CellularRadio.h b/include/mts/MTS_IO_CellularRadio.h
index d0f7a14..6840398 100644
--- a/include/mts/MTS_IO_CellularRadio.h
+++ b/include/mts/MTS_IO_CellularRadio.h
@@ -136,7 +136,6 @@ namespace MTS {
CODE setUeModeOfOperation(UE_MODES_OF_OPERATION newmode) override;
CODE getUeModeOfOperation(UE_MODES_OF_OPERATION& newmode) override;
- CODE convertUeModeToString(UE_MODES_OF_OPERATION mode, std::string &string) override;
protected:
diff --git a/include/mts/MTS_IO_ICellularRadio.h b/include/mts/MTS_IO_ICellularRadio.h
index b84d4b8..63b4f08 100644
--- a/include/mts/MTS_IO_ICellularRadio.h
+++ b/include/mts/MTS_IO_ICellularRadio.h
@@ -80,6 +80,7 @@ namespace MTS {
static CODE convertModelToMtsShortCode(const std::string& sModel, std::string& sCode, ICellularRadio *radioObj = NULL);
static CODE convertServiceDomainToString(SERVICEDOMAIN eSd, std::string& sSd);
static CODE convertActiveBandToString(ACTIVEBAND eBand, std::string& sBand);
+ static CODE convertUeModeToString(UE_MODES_OF_OPERATION mode, std::string& string);
static std::string sendCommand(MTS::AutoPtr<MTS::IO::Connection>& apIo,
const std::string& sCmd,
@@ -573,7 +574,6 @@ namespace MTS {
virtual CODE setUeModeOfOperation(UE_MODES_OF_OPERATION newmode) = 0;
virtual CODE getUeModeOfOperation(UE_MODES_OF_OPERATION& newmode) = 0;
- virtual CODE convertUeModeToString(UE_MODES_OF_OPERATION mode, std::string& string) = 0;
};
}
}