From b32dbb2c5f12fbacf598edb812acab816068de00 Mon Sep 17 00:00:00 2001 From: Serhii Kostiuk Date: Fri, 7 Aug 2020 16:03:56 +0300 Subject: Quectel EG25-G Delta Radio Firmware Upgrade support - libmts-io implementation Small improvements in code comments. --- src/MTS_IO_QuectelRadio.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/MTS_IO_QuectelRadio.cpp b/src/MTS_IO_QuectelRadio.cpp index de36987..aeb06ab 100644 --- a/src/MTS_IO_QuectelRadio.cpp +++ b/src/MTS_IO_QuectelRadio.cpp @@ -1010,11 +1010,11 @@ ICellularRadio::CODE QuectelRadio::checkFile(bool& bIsFilePresent, const std::st return FAILURE; } - // UFS files in +QFLST output may or may not have "UFS:" prefix + // UFS files in +QFLST output may or may not have a "UFS:" prefix const std::string sExpectedFull = "+QFLST: \"UFS:" + sTargetFilename + "\""; const std::string sExpectedAlt = "+QFLST: \"" + sTargetFilename + "\""; - // File is present if file name found with or without "UFS:" prefix in QFLST output + // File is present if its name is present with or without "UFS:" prefix in QFLST output bool bIsPresentFull = (sResult.find(sExpectedFull) != std::string::npos); bool bIsPresentAlt = (sResult.find(sExpectedAlt) != std::string::npos); -- cgit v1.2.3