summaryrefslogtreecommitdiff
path: root/src/MTS_IO_EG95Radio.cpp
diff options
context:
space:
mode:
authorMaksym Telychko <maksym.telychko@globallogic.com>2019-07-29 13:27:29 +0300
committerMaksym Telychko <maksym.telychko@globallogic.com>2019-07-29 13:27:29 +0300
commit5ee7664dde53f71fd245db530f985f10f111b28b (patch)
treee79cf811dd79d7a32974e3eda419aa6fcc8258ba /src/MTS_IO_EG95Radio.cpp
parent6c92f7176e69daaa56f8274f0059ccf70beb4fe8 (diff)
downloadlibmts-io-5ee7664dde53f71fd245db530f985f10f111b28b.tar.gz
libmts-io-5ee7664dde53f71fd245db530f985f10f111b28b.tar.bz2
libmts-io-5ee7664dde53f71fd245db530f985f10f111b28b.zip
MTX-2891 mpower 2-3-4g switch refactoring: method names
Diffstat (limited to 'src/MTS_IO_EG95Radio.cpp')
-rw-r--r--src/MTS_IO_EG95Radio.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/MTS_IO_EG95Radio.cpp b/src/MTS_IO_EG95Radio.cpp
index 5c9ed69..f85b2c3 100644
--- a/src/MTS_IO_EG95Radio.cpp
+++ b/src/MTS_IO_EG95Radio.cpp
@@ -45,3 +45,16 @@ ICellularRadio::CODE EG95Radio::setRxDiversity(const Json::Value& jArgs) {
return sendBasicCommand(sCmd);
}
+
+ICellularRadio::CODE EG95Radio::getSupportedCellularModes(PREFERRED_NETWORKS &networks) {
+ networks = static_cast<PREFERRED_NETWORKS>(PREFERRED_NETWORK_2G | PREFERRED_NETWORK_3G | PREFERRED_NETWORK_4G);
+ return SUCCESS;
+}
+
+ICellularRadio::CODE EG95Radio::getCellularMode(PREFERRED_NETWORKS &networks) {
+ return FAILURE;
+}
+
+ICellularRadio::CODE EG95Radio::setCellularMode(PREFERRED_NETWORKS networks) {
+ return SUCCESS;
+}