summaryrefslogtreecommitdiff
path: root/src/MTS_IO_EG95Radio.cpp
diff options
context:
space:
mode:
authorJeff Hatch <jhatch@multitech.com>2022-05-04 16:09:39 -0500
committerJeff Hatch <jhatch@multitech.com>2022-05-04 16:09:39 -0500
commit9436716e2fbb28938dba10e13bc84c60105cf907 (patch)
tree7ab78bc6273ffa42305c342f1fe71d1ffa1d6779 /src/MTS_IO_EG95Radio.cpp
parent1f7987d546384b6b9ef0079dac5c903148a59210 (diff)
parent47997c0e5aa7d32ddbba22ceead2ff553881c47c (diff)
downloadlibmts-io-9436716e2fbb28938dba10e13bc84c60105cf907.tar.gz
libmts-io-9436716e2fbb28938dba10e13bc84c60105cf907.tar.bz2
libmts-io-9436716e2fbb28938dba10e13bc84c60105cf907.zip
Merge branch 'ms/MTX-4445_LNA7D_Cellular_radio_support' into 'master'
[MTX-4445] mPower R.6.0.X: MTCAP3: LNA7D - cellular radio support GP-1548 See merge request !48
Diffstat (limited to 'src/MTS_IO_EG95Radio.cpp')
-rw-r--r--src/MTS_IO_EG95Radio.cpp24
1 files changed, 14 insertions, 10 deletions
diff --git a/src/MTS_IO_EG95Radio.cpp b/src/MTS_IO_EG95Radio.cpp
index 296f183..83d6489 100644
--- a/src/MTS_IO_EG95Radio.cpp
+++ b/src/MTS_IO_EG95Radio.cpp
@@ -19,6 +19,7 @@
*/
#include <mts/MTS_IO_EG95Radio.h>
+#include <mts/MTS_Logger.h>
using namespace MTS::IO;
@@ -34,18 +35,21 @@ EG95Radio::~EG95Radio() {
}
-ICellularRadio::CODE EG95Radio::setRxDiversity(const Json::Value& jArgs) {
- /* Command string for EG95 radios: AT+QCFG="diversity",(0-1) */
- if (jArgs["enabled"].asString() != "1" && jArgs["enabled"].asString() != "0") {
- return FAILURE;
+ICellularRadio::CODE EG95Radio::getSupportedCellularModes(CELLULAR_MODES &networks) {
+ std::string sRadioCode;
+ ICellularRadio::CODE iCode;
+
+ iCode = convertModelToMtsShortCode(MODEL_NAME, sRadioCode, this);
+ if (iCode != SUCCESS) {
+ printError("%s| Failed to obtain radio code: [%d]", getName().c_str(), iCode);
+ return iCode;
}
- std::string sCmd = "AT+QCFG=\"diversity\",";
- sCmd += jArgs["enabled"].asString();
- return sendBasicCommand(sCmd);
-}
+ if (sRadioCode == "LNA7D") {
+ networks = static_cast<CELLULAR_MODES>(CELLULAR_MODE_3G | CELLULAR_MODE_4G);
+ } else {
+ networks = static_cast<CELLULAR_MODES>(CELLULAR_MODE_2G | CELLULAR_MODE_3G | CELLULAR_MODE_4G);
+ }
-ICellularRadio::CODE EG95Radio::getSupportedCellularModes(CELLULAR_MODES &networks) {
- networks = static_cast<CELLULAR_MODES>(CELLULAR_MODE_2G | CELLULAR_MODE_3G | CELLULAR_MODE_4G);
return SUCCESS;
} \ No newline at end of file