diff options
author | Maksym Telychko <maksym.telychko@globallogic.com> | 2019-06-06 14:45:58 +0300 |
---|---|---|
committer | Maksym Telychko <maksym.telychko@globallogic.com> | 2019-06-06 14:45:58 +0300 |
commit | 53efcef2e2f521135b323e194c45f1d9fa7b5d5d (patch) | |
tree | 1212563b63ade85fb58d81a67168826cc36e0c31 /src/MTS_IO_ME910Radio.cpp | |
parent | 86e572b513259e1f7164dd4e4b0f490c870bfc30 (diff) | |
download | libmts-io-53efcef2e2f521135b323e194c45f1d9fa7b5d5d.tar.gz libmts-io-53efcef2e2f521135b323e194c45f1d9fa7b5d5d.tar.bz2 libmts-io-53efcef2e2f521135b323e194c45f1d9fa7b5d5d.zip |
[MTS-MTQ] refactoring: namespace usage
Using identificators in appropriate namespace
Diffstat (limited to 'src/MTS_IO_ME910Radio.cpp')
-rw-r--r-- | src/MTS_IO_ME910Radio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/MTS_IO_ME910Radio.cpp b/src/MTS_IO_ME910Radio.cpp index 42796e9..590a883 100644 --- a/src/MTS_IO_ME910Radio.cpp +++ b/src/MTS_IO_ME910Radio.cpp @@ -30,12 +30,12 @@ ME910Radio::ME910Radio(const std::string& sME910Model, const std::string& sPort) } -CellularRadio::CODE ME910Radio::setRxDiversity(const Json::Value& jArgs) { +ME910Radio::CODE ME910Radio::setRxDiversity(const Json::Value& jArgs) { return FAILURE; } -CellularRadio::CODE ME910Radio::getFirmwareBuild(std::string& sFirmwareBuild) { +ME910Radio::CODE ME910Radio::getFirmwareBuild(std::string& sFirmwareBuild) { std::string sCmd("AT#CFVR"); std::string sResult = sendCommand(sCmd); |