summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp18
1 files changed, 16 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 0630d44..c82a3ae 100644
--- a/main.cpp
+++ b/main.cpp
@@ -90,6 +90,7 @@ 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_VENDORFIRMWARE = 0x00200000;
+const uint32_t OPT_UE_MODE_OF_OPERATION = 0x00400000;
const uint32_t OPT_SUMMARY_STATIC = 0x01000000;
const uint32_t OPT_SUMMARY_NETWORK = 0x02000000;
@@ -189,9 +190,9 @@ int main(int argc, char** argv) {
std::string sValue;
ICellularRadio::REGISTRATION eReg;
result = g_apRadio->getRegistration(eReg);
- if(result == ICellularRadio::SUCCESS) {
+ if (result == ICellularRadio::SUCCESS) {
result = g_apRadio->convertRegistrationToString(eReg, sValue);
- if(result == ICellularRadio::SUCCESS) {
+ if (result == ICellularRadio::SUCCESS) {
printf("%s", sValue.c_str());
}
}
@@ -338,6 +339,17 @@ int main(int argc, char** argv) {
printf("%s", sValue.c_str());
}
}
+ else if (g_iOptions & OPT_UE_MODE_OF_OPERATION) {
+ std::string sValue;
+ ICellularRadio::UE_MODES_OF_OPERATION mode;
+ result = g_apRadio->getUeModeOfOperation(mode);
+ if (result == ICellularRadio::SUCCESS) {
+ result = g_apRadio->convertUeModeToString(mode, sValue);
+ if(result == ICellularRadio::SUCCESS) {
+ printf("%s", sValue.c_str());
+ }
+ }
+ }
if (g_bIstty && result == ICellularRadio::CODE::SUCCESS)
printf("\n");
@@ -618,6 +630,7 @@ void parseOptions(int argc, char** argv) {
{ "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 },
+ { "ue-mode-of-operation", no_argument,&iOption, OPT_UE_MODE_OF_OPERATION },
{ 0, 0, 0, 0 } };
/* getopt_long stores the option index here. */
@@ -728,6 +741,7 @@ void printHelp(const std::string& sApp) {
printf("\t--cellular-mode\n");
printf("\t--supported-cellular-modes\n");
printf("\t--sim-carrier-code\n");
+ printf("\t--ue-mode-of-operation\n");
// Applicable for LTE910-NA1 dual FW images only
// printf("\t--active-firmware\n");
printf("\n");