summaryrefslogtreecommitdiff
path: root/include/mts/MTS_IO_ICellularRadio.h
diff options
context:
space:
mode:
authorJeff Hatch <jhatch@multitech.com>2021-03-31 16:17:13 -0500
committerJeff Hatch <jhatch@multitech.com>2021-03-31 16:17:13 -0500
commitb7f7d95092b87d0b278b1a74af53bfbc837b7acd (patch)
tree9cab56d25f4d52c734b578fefc2ac493a3d11b16 /include/mts/MTS_IO_ICellularRadio.h
parentad6b4d51ac469d4e7300fd74d1ada87b1caece93 (diff)
parent76df85f676adde6f31c35f7809f9f7794baca2a1 (diff)
downloadlibmts-io-b7f7d95092b87d0b278b1a74af53bfbc837b7acd.tar.gz
libmts-io-b7f7d95092b87d0b278b1a74af53bfbc837b7acd.tar.bz2
libmts-io-b7f7d95092b87d0b278b1a74af53bfbc837b7acd.zip
Merge branch 'rs/GP-1111-cemode-for-telit' into 'master' 1.0.24
[GP-1111] mPower R. Apr 2021: +CEMODE shall be set to CEMODE=2 - libmts-io for Telit See merge request !37
Diffstat (limited to 'include/mts/MTS_IO_ICellularRadio.h')
-rw-r--r--include/mts/MTS_IO_ICellularRadio.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/mts/MTS_IO_ICellularRadio.h b/include/mts/MTS_IO_ICellularRadio.h
index 61ffd20..e8ae891 100644
--- a/include/mts/MTS_IO_ICellularRadio.h
+++ b/include/mts/MTS_IO_ICellularRadio.h
@@ -68,10 +68,20 @@ namespace MTS {
CELLULAR_MODE_5G = 1 << 3 // 5G
};
+ enum UE_MODES_OF_OPERATION : uint8_t {
+ UNKNOWN_MODE = 0, // current mode of operation is not available
+ PS_MODE1, // only EPS (LTE) services are allowed, the usage is “voice centric”
+ PS_MODE2, // only EPS (LTE) services are allowed, the usage is “data centric”
+ CS_PS_MODE1, // both EPS and non-EPS services are allowed, the usage is “voice centric”
+ CS_PS_MODE2 // both EPS and non-EPS services are allowed, the usage is “data centric”
+ };
+
static CODE convertModelToType(const std::string& sModel, std::string& sType);
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 CODE convertStringToUeMode(const std::string& sMode, UE_MODES_OF_OPERATION& mode);
static std::string sendCommand(MTS::AutoPtr<MTS::IO::Connection>& apIo,
const std::string& sCmd,
@@ -562,6 +572,9 @@ namespace MTS {
virtual std::string waitResponse(IsNeedMoreData& isNeedMoreData,
int32_t timeoutMillis = 100) = 0;
+
+ virtual CODE setUeModeOfOperation(UE_MODES_OF_OPERATION newmode) = 0;
+ virtual CODE getUeModeOfOperation(UE_MODES_OF_OPERATION& newmode) = 0;
};
}
}