summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Hatch <jhatch@multitech.com>2020-06-30 08:39:49 -0500
committerJeff Hatch <jhatch@multitech.com>2020-06-30 08:39:49 -0500
commite024df7d4815f8d7ce69df467c7dba308b6311b5 (patch)
tree65fa9ad2cbe3eb40d9071977816997b8142d9d02
parentc01246193e111a6be14449278281ab58865a7123 (diff)
parent96c939ec3c6eced37e1a12dc0be3ebbde0efb421 (diff)
downloadradio-cmd-e024df7d4815f8d7ce69df467c7dba308b6311b5.tar.gz
radio-cmd-e024df7d4815f8d7ce69df467c7dba308b6311b5.tar.bz2
radio-cmd-e024df7d4815f8d7ce69df467c7dba308b6311b5.zip
Merge branch 'sk/port-lna7-changes' into 'master'
[MTX-3489] mPower Oct20: Porting "LNA7 Intermediate Release" changes See merge request !5
-rw-r--r--main.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 5169d4e..cfe7727 100644
--- a/main.cpp
+++ b/main.cpp
@@ -108,6 +108,8 @@ const uint32_t OPT_SET_CELLULAR_MODE = 0x08000000;
const uint32_t OPT_UNLOCK_SIM_CARD = 0x20000000;
const uint32_t OPT_RESET_RADIO = 0x40000000;
+int32_t g_iAuxOptions = 0;
+const uint32_t AOPT_OMA_DM_START = 0x00000001;
void handle_sigterm(int signum);
void printHelp(const std::string& sApp);
@@ -152,6 +154,7 @@ static struct option long_options[] = {
{ "init-activation", no_argument, &iOption, OPT_INIT_ACTIVATION },
{ "factory-default", no_argument, &iOption, OPT_INIT_RTN },
{ "set-cellular-mode", required_argument, 0, 'w' },
+ { "start-oma-dm", no_argument, 0, 'o' },
{ 0, 0, 0, 0 }
};
@@ -386,6 +389,8 @@ int main(int argc, char** argv) {
} else {
printf("Invalid argument: %s\n", g_sCellularMode.c_str());
}
+ } else if (g_iAuxOptions & AOPT_OMA_DM_START) {
+ result = g_apRadio->startOmaDm(cb);
}
shutdown();
@@ -606,6 +611,10 @@ void parseOptions(int argc, char** argv)
g_iOptions |= OPT_SET_CELLULAR_MODE;
break;
+ case 'o':
+ g_iAuxOptions |= AOPT_OMA_DM_START;
+ break;
+
default:
printf("OPTION: [%d] ABORTING!!\n", c);
abort();
@@ -656,13 +665,14 @@ void printHelp(const std::string& sApp) {
printf("\t--factory-default [ --msl <MSL> ] : reset to factory defaults\n");
printf("\t--unlock-sim-card <SIM PIN> : unlock the SIM card using the PIN code provided\n");
printf("\t--reset-radio : reset the radio module using AT commands\n");
+ printf("\t--start-oma-dm : start the OMA DM procedure (selected radios and networks only)\n");
printf("\n");
printf("\t--printlvl (p) <level> : sets the printlvl [0-100]\n");
printf("\t--version (v) : returns version\n");
printf("\t--help (?) : returns this message\n");
printf("\n");
printf("\tSupported Radios:\n");
- printf("\t\tLE910, HE910, GE910, DE910, CE910\n");
+ printf("\t\tLE910, HE910, GE910, DE910, CE910, ME910, EG95, EG25\n");
}
const char *code2str(MTS::IO::ICellularRadio::CODE code) {