summaryrefslogtreecommitdiff
path: root/src/MTS_IO_CellularRadioFactory.cpp
diff options
context:
space:
mode:
authorMaksym Telychko <maksym.telychko@globallogic.com>2019-06-10 11:27:27 +0300
committerMaksym Telychko <maksym.telychko@globallogic.com>2019-06-10 11:27:27 +0300
commit5a7d8772ea898b3567685431b5a6be13015e5887 (patch)
tree96084a4cc149322d18d0adea52b5c85e952e314e /src/MTS_IO_CellularRadioFactory.cpp
parent596f8f8393bf837d73e0a62c87d52557d9191f96 (diff)
downloadlibmts-io-5a7d8772ea898b3567685431b5a6be13015e5887.tar.gz
libmts-io-5a7d8772ea898b3567685431b5a6be13015e5887.tar.bz2
libmts-io-5a7d8772ea898b3567685431b5a6be13015e5887.zip
[MTS-MTQ] refactoring: static function moved to ICellularRadio
Diffstat (limited to 'src/MTS_IO_CellularRadioFactory.cpp')
-rw-r--r--src/MTS_IO_CellularRadioFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MTS_IO_CellularRadioFactory.cpp b/src/MTS_IO_CellularRadioFactory.cpp
index 130d3ed..0c64221 100644
--- a/src/MTS_IO_CellularRadioFactory.cpp
+++ b/src/MTS_IO_CellularRadioFactory.cpp
@@ -102,7 +102,7 @@ std::string CellularRadioFactory::identifyRadio(const std::string& sPort) {
std::string sCmd("ATI4");
std::string sResult;
do {
- sResult = TelitRadio::sendCommand(apIo, sCmd, TelitRadio::DEFAULT_BAIL_STRINGS, 1000, TelitRadio::CR);
+ sResult = ICellularRadio::sendCommand(apIo, sCmd, TelitRadio::DEFAULT_BAIL_STRINGS, 1000, TelitRadio::CR);
if (sResult.find("OK") == std::string::npos) {
printDebug("RADIO| Attempting to get radio model [%s] ...", sResult.c_str());
} else {