From 02d34f9196aa86cef2bc17ebd0ed62da95cb25c5 Mon Sep 17 00:00:00 2001 From: Serhii Kostiuk Date: Thu, 12 Dec 2019 10:55:56 +0200 Subject: [MTX-3072][GP-359] mPower Edge: LVW3 support on Conduit devices Updated sms-utils to fix the issue with SMS messages on LVW3. --- src/atcmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/atcmd.c') diff --git a/src/atcmd.c b/src/atcmd.c index a216ab6..4192558 100644 --- a/src/atcmd.c +++ b/src/atcmd.c @@ -1538,7 +1538,8 @@ is_vzw_lte(void) } } - return (!strcmp(Global.core.model, "LE910-SVG")); + return (!strcmp(Global.core.model, "LE910-SVG") || + !strcmp(Global.core.model, "LE910-SV1")); } int isCdmaTypeModel() -- cgit v1.2.3 From 1fe79e42c3403ee873ff5cc2db170b3dfb4acafe Mon Sep 17 00:00:00 2001 From: Serhii Kostiuk Date: Mon, 16 Dec 2019 09:48:38 +0200 Subject: [MTX-3102] mPower Feb20: IN:3899 MTCDT-LVW3 fails SMS with GUI Fixes after a code review: - Replaced strcmp with strncmp - fixed the return type for "is_vzw_lte" function --- src/atcmd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/atcmd.c') diff --git a/src/atcmd.c b/src/atcmd.c index 4192558..97fd34b 100644 --- a/src/atcmd.c +++ b/src/atcmd.c @@ -1527,7 +1527,7 @@ int sms_device_open(void) return fd; } -is_vzw_lte(void) +int is_vzw_lte(void) { if (!strcmp(Global.core.model, "LE910-NA1")) { log_debug("Found LE910-NA1"); @@ -1538,8 +1538,8 @@ is_vzw_lte(void) } } - return (!strcmp(Global.core.model, "LE910-SVG") || - !strcmp(Global.core.model, "LE910-SV1")); + return (!strncmp(Global.core.model, "LE910-SVG", MODEL_LEN) || + !strncmp(Global.core.model, "LE910-SV1", MODEL_LEN)); } int isCdmaTypeModel() @@ -1548,8 +1548,8 @@ int isCdmaTypeModel() if (is_vzw_lte()) return 1; - return (!strcmp(Global.core.model, "DE910-DUAL") || - !strcmp(Global.core.model, "CE910-DUAL")); + return (!strncmp(Global.core.model, "DE910-DUAL", MODEL_LEN) || + !strncmp(Global.core.model, "CE910-DUAL", MODEL_LEN)); } int is_telit_model() -- cgit v1.2.3