summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2020-07-06 10:22:45 +0300
committerSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2020-07-06 10:22:45 +0300
commit63b1b15a510ff3acdc4f93bbac1ed14548e6620b (patch)
tree48851ebc4c9dbb8c4f7d9885453aa1986ac41148
parent02d9adc99e2bebde36ad43eb17e8b322cc1014ec (diff)
downloadlibmts-io-63b1b15a510ff3acdc4f93bbac1ed14548e6620b.tar.gz
libmts-io-63b1b15a510ff3acdc4f93bbac1ed14548e6620b.tar.bz2
libmts-io-63b1b15a510ff3acdc4f93bbac1ed14548e6620b.zip
Quectel Delta Radio Firmware Upgrade support - libmts-io implementation
Fixed message format for FUMO Done and FUMO Error messages. The original code with "FUMO done" ("done" lowercase) and "FUMO error" ("error" lowercase) was copied from the ME910C1-WW implementation. At the same time other places of the code use Title Case for "Done", "Error" and "Info" messages. This commit fixes the last bunch of messages in the QuectelRadio Delta FWU implementation to use Title Case. This simplifies handling in various scripts and other components.
-rw-r--r--src/MTS_IO_QuectelRadio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/MTS_IO_QuectelRadio.cpp b/src/MTS_IO_QuectelRadio.cpp
index e5e3296..7aeed96 100644
--- a/src/MTS_IO_QuectelRadio.cpp
+++ b/src/MTS_IO_QuectelRadio.cpp
@@ -658,10 +658,10 @@ ICellularRadio::CODE QuectelRadio::fumoLocalApply(ICellularRadio::UpdateCb& step
if (rc == SUCCESS) {
printInfo("Radio firmware applied successfully");
- callNextStep(stepCb, "FUMO done: radio firmware applied successfully");
+ callNextStep(stepCb, "FUMO Done: radio firmware applied successfully");
} else {
printError("Radio firmware has not been updated");
- callNextStep(stepCb, "FUMO error: radio firmware has not been updated");
+ callNextStep(stepCb, "FUMO Error: radio firmware has not been updated");
}
return rc;