summaryrefslogtreecommitdiff
path: root/src/MTS_IO_CellularRadio.cpp
diff options
context:
space:
mode:
authorMaksym Telychko <maksym.telychko@globallogic.com>2019-08-08 13:45:31 +0300
committerMaksym Telychko <maksym.telychko@globallogic.com>2019-08-08 13:45:31 +0300
commit4e5c4eb9d3b9a8974429810ebe5afc3387753643 (patch)
treed1b30c78bbb2e81576cf193a7be809c0a2e0676b /src/MTS_IO_CellularRadio.cpp
parentf3605192c24508d4b4b4eb474ff6890a2917043c (diff)
downloadlibmts-io-4e5c4eb9d3b9a8974429810ebe5afc3387753643.tar.gz
libmts-io-4e5c4eb9d3b9a8974429810ebe5afc3387753643.tar.bz2
libmts-io-4e5c4eb9d3b9a8974429810ebe5afc3387753643.zip
MTX-2891 mpower 2-3-4g: error messages printed with printError
Diffstat (limited to 'src/MTS_IO_CellularRadio.cpp')
-rw-r--r--src/MTS_IO_CellularRadio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/MTS_IO_CellularRadio.cpp b/src/MTS_IO_CellularRadio.cpp
index e171341..6df92e0 100644
--- a/src/MTS_IO_CellularRadio.cpp
+++ b/src/MTS_IO_CellularRadio.cpp
@@ -774,7 +774,7 @@ ICellularRadio::CODE CellularRadio::getCellularMode(CELLULAR_MODES &networks) {
networks = CELLULAR_MODE_NA;
std::string cmdResult = sendCommand("AT+COPS?");
if (cmdResult.find(ICellularRadio::RSP_OK) == std::string::npos) {
- printDebug("%s| AT+COPS returned unexpected response: AT+COPS? [%s]", getName().c_str(), cmdResult.c_str());
+ printError("%s| AT+COPS returned unexpected response: AT+COPS? [%s]", getName().c_str(), cmdResult.c_str());
return FAILURE;
}
@@ -782,7 +782,7 @@ ICellularRadio::CODE CellularRadio::getCellularMode(CELLULAR_MODES &networks) {
const std::vector<std::string> &reply = MTS::Text::split(MTS::Text::getLine(MTS::Text::trim(cmdResult), cursor, cursor), ',');
uint8_t op;
if (reply.size() < 4 || !MTS::Text::parse(op, reply[3])) {
- printDebug("Error parsing reply from AT+COPS");
+ printError("%s| AT+COPS Error parsing reply [AT+COPS?][%s]", getName().c_str(), cmdResult.c_str());
return FAILURE;
}
if (op == 0) {
@@ -792,7 +792,7 @@ ICellularRadio::CODE CellularRadio::getCellularMode(CELLULAR_MODES &networks) {
} else if (op == 7) {
networks = CELLULAR_MODE_4G;
} else {
- printDebug("Error: AT+COPS unknown Radio Access Technology");
+ printError("%s| AT+COPS unknown Radio Access Technology [AT+COPS?][%s]", getName().c_str(), cmdResult.c_str());
return FAILURE;
}
return SUCCESS;