summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandrii.davydenko <andrii.davydenko@globallogic.com>2022-01-27 17:59:29 +0200
committerandrii.davydenko <andrii.davydenko@globallogic.com>2022-01-31 16:17:49 +0200
commit36e25776045429eef47f594a23ebaecc3c812042 (patch)
treec6ecc6807eedcb98162eb38c4db1544859c48e1e
parent2298f64472b1052868e12d7e4e76b75731c31958 (diff)
downloadradio-query-36e25776045429eef47f594a23ebaecc3c812042.tar.gz
radio-query-36e25776045429eef47f594a23ebaecc3c812042.tar.bz2
radio-query-36e25776045429eef47f594a23ebaecc3c812042.zip
[MTX-4190] mPower R.6.0: Update MODBUS slave feature to support Quectel and newer Telit radios. - GP-862
Implement a changes for Quectel and newer Telit radios Signed-off-by: andrii.davydenko <andrii.davydenko@globallogic.com>
-rw-r--r--main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 369cb01..f2cc086 100644
--- a/main.cpp
+++ b/main.cpp
@@ -97,6 +97,7 @@ const uint32_t OPT_SUMMARY_STATIC = 0x01000000;
const uint32_t OPT_SUMMARY_NETWORK = 0x02000000;
const uint32_t OPT_CELL_MODE = 0x04000000;
const uint32_t OPT_SUPPORTED_CELL_MODE = 0x08000000;
+const uint32_t OPT_SELECTED_BANDS_RAW = 0x20000000;
int32_t g_iAuxOptions = 0;
const uint32_t AOPT_VOICE_SUPPORT = 0x00000001;
@@ -369,6 +370,12 @@ int main(int argc, char** argv) {
if (result == ICellularRadio::SUCCESS) {
printf("%s", toCompactStyledString(jValue).c_str());
}
+ } else if (g_iOptions & OPT_SELECTED_BANDS_RAW) {
+ std::string sResult;
+ result = g_apRadio->getSelectedBandsRaw(sResult);
+ if (result == ICellularRadio::SUCCESS) {
+ printf("%s", sResult.c_str());
+ }
}
if (g_bIstty && result == ICellularRadio::CODE::SUCCESS)
@@ -662,6 +669,7 @@ void parseOptions(int argc, char** argv) {
{ "ue-mode-of-operation", no_argument,&iOption, OPT_UE_MODE_OF_OPERATION },
{ "sim-mcc-mnc", no_argument, &iOption, OPT_SIM_MCC_MNC },
{ "voice-support",no_argument, &iAuxOption, AOPT_VOICE_SUPPORT },
+ { "selected-bands-raw", no_argument, &iOption, OPT_SELECTED_BANDS_RAW },
{ 0, 0, 0, 0 } };
/* getopt_long stores the option index here. */
@@ -776,6 +784,7 @@ void printHelp(const std::string& sApp) {
printf("\t--ue-mode-of-operation\n");
printf("\t--sim-mcc-mnc\n");
printf("\t--voice-support\n");
+ printf("\t--selected-bands-raw\n");
// Applicable for LTE910-NA1 dual FW images only
// printf("\t--active-firmware\n");
printf("\n");