summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Hatch <jhatch@multitech.com>2020-06-17 08:00:00 -0500
committerJeff Hatch <jhatch@multitech.com>2020-06-17 08:00:00 -0500
commitccb90a0df7335c49589831cfddb9e3d2a4322b5d (patch)
tree4d3d0bebb17c269b57acaa40d1b5b0b41e90aa9d
parentff6e2d6a828d26db31832f7fa3eb3c5789332421 (diff)
parentf807d5cb2941b0d13edbbc3b935dd6999bef1e45 (diff)
downloadradio-query-ccb90a0df7335c49589831cfddb9e3d2a4322b5d.tar.gz
radio-query-ccb90a0df7335c49589831cfddb9e3d2a4322b5d.tar.bz2
radio-query-ccb90a0df7335c49589831cfddb9e3d2a4322b5d.zip
Merge branch 'sk/sim-carrier-detect' into 'mpower-5.2-lna7'
[GP-654] Add SIM card-based carrier detection See merge request !6
-rw-r--r--main.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index d0da2a2..98a2c23 100644
--- a/main.cpp
+++ b/main.cpp
@@ -87,6 +87,7 @@ const uint32_t OPT_LOCATION = 0x00010000;
const uint32_t OPT_FIRMWAREBUILD = 0x00020000;
const uint32_t OPT_SIM_STATUS = 0x00040000;
const uint32_t OPT_RADIO_CODE = 0x00080000;
+const uint32_t OPT_SIM_CARRIER_CODE = 0x00100000;
const uint32_t OPT_SUMMARY_STATIC = 0x01000000;
const uint32_t OPT_SUMMARY_NETWORK = 0x02000000;
@@ -321,6 +322,12 @@ int main(int argc, char** argv) {
printf("%s", sValue.c_str());
}
}
+ } else if (g_iOptions & OPT_SIM_CARRIER_CODE) {
+ std::string sValue;
+ result = g_apRadio->getSimCarrierCode(sValue);
+ if (result == ICellularRadio::SUCCESS) {
+ printf("%s", sValue.c_str());
+ }
}
if (g_bIstty && result == ICellularRadio::CODE::SUCCESS)
@@ -532,6 +539,12 @@ Json::Value getStaticData() {
}
jData[MTS::IO::ICellularRadio::KEY_SUPPORTED_CELL_MODES] = sSupportedCellModes;
+ std::string sCarrierCode(ICellularRadio::VALUE_UNKNOWN);
+ if(g_apRadio->getSimCarrierCode(sCarrierCode) != ICellularRadio::SUCCESS) {
+ printWarning("SIM carrier information not found");
+ }
+ jData[MTS::IO::ICellularRadio::KEY_SIM_CARRIER_CODE] = sCarrierCode;
+
return jData;
}
@@ -584,6 +597,7 @@ void parseOptions(int argc, char** argv) {
{ "dynamic", no_argument, &iOption, OPT_SUMMARY_NETWORK },
{ "cellular-mode",no_argument, &iOption, OPT_CELL_MODE },
{ "supported-cellular-modes", no_argument, &iOption, OPT_SUPPORTED_CELL_MODE },
+ { "sim-carrier-code", no_argument, &iOption, OPT_SIM_CARRIER_CODE },
{ 0, 0, 0, 0 } };
/* getopt_long stores the option index here. */
@@ -692,9 +706,10 @@ void printHelp(const std::string& sApp) {
printf("\t--sim-status\n");
printf("\t--cellular-mode\n");
printf("\t--supported-cellular-modes\n");
+ printf("\t--sim-carrier-code\n");
// Applicable for LTE910-NA1 dual FW images only
// printf("\t--active-firmware\n");
printf("\n");
printf("\tSupported Radios:\n");
- printf("\t\tHE910, GE910, DE910, CE910, LE910, ME910\n");
+ printf("\t\tHE910, GE910, DE910, CE910, LE910, ME910, EG95\n");
}