From 63b1b15a510ff3acdc4f93bbac1ed14548e6620b Mon Sep 17 00:00:00 2001 From: Serhii Kostiuk Date: Mon, 6 Jul 2020 10:22:45 +0300 Subject: 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. --- src/MTS_IO_QuectelRadio.cpp | 4 ++-- 1 file 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; -- cgit v1.2.3