summaryrefslogtreecommitdiff
path: root/include/mts/MTS_IO_ICellularRadio.h
diff options
context:
space:
mode:
authormykola.salomatin <mykola.salomatin@globallogic.com>2021-04-16 18:50:15 +0300
committermykola.salomatin <mykola.salomatin@globallogic.com>2021-04-16 18:50:15 +0300
commitac88b70987f59e89ce5257941e61ad4f1021d65f (patch)
tree8baa012e02a30fb5eeb64e006db516da101cc8c8 /include/mts/MTS_IO_ICellularRadio.h
parent6cab1e29fc2031a76c87e49c3bcdd7c5db8f40dc (diff)
downloadlibmts-io-ac88b70987f59e89ce5257941e61ad4f1021d65f.tar.gz
libmts-io-ac88b70987f59e89ce5257941e61ad4f1021d65f.tar.bz2
libmts-io-ac88b70987f59e89ce5257941e61ad4f1021d65f.zip
[MTX-3998] mPower R. Apr 2021: +CEMODE shall be set to CEMODE=2 - Quectel - GP-1111
Refactoring after review
Diffstat (limited to 'include/mts/MTS_IO_ICellularRadio.h')
-rw-r--r--include/mts/MTS_IO_ICellularRadio.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/mts/MTS_IO_ICellularRadio.h b/include/mts/MTS_IO_ICellularRadio.h
index 63cedbe..e638e8b 100644
--- a/include/mts/MTS_IO_ICellularRadio.h
+++ b/include/mts/MTS_IO_ICellularRadio.h
@@ -82,8 +82,8 @@ 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& sMode);
- static CODE convertStringToUeMode(const std::string& sMode, UE_MODES_OF_OPERATION& mode);
+ static CODE convertUeModeToString(ICellularRadio::UE_MODES_OF_OPERATION mode, std::string& sMode);
+ static CODE convertStringToUeMode(const std::string& sMode, ICellularRadio::UE_MODES_OF_OPERATION& mode);
static std::string sendCommand(MTS::AutoPtr<MTS::IO::Connection>& apIo,
const std::string& sCmd,
@@ -574,9 +574,8 @@ namespace MTS {
virtual std::string waitResponse(IsNeedMoreData& isNeedMoreData,
int32_t timeoutMillis = 100) = 0;
-
- virtual CODE setUeModeOfOperation(UE_MODES_OF_OPERATION mode) = 0;
- virtual CODE getUeModeOfOperation(UE_MODES_OF_OPERATION& mode) = 0;
+ virtual CODE setUeModeOfOperation(ICellularRadio::UE_MODES_OF_OPERATION mode) = 0;
+ virtual CODE getUeModeOfOperation(ICellularRadio::UE_MODES_OF_OPERATION& mode) = 0;
};
}
}