summaryrefslogtreecommitdiff
path: root/include/mts/MTS_IO_CellularRadio.h
diff options
context:
space:
mode:
authorSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2019-06-13 10:32:08 +0300
committerSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2019-06-13 10:32:08 +0300
commitc0e937f5a2a31b09f2736f1aeda782ba4ad121e2 (patch)
treed1218d23cd3eab04c10bac711fe312ff650566a0 /include/mts/MTS_IO_CellularRadio.h
parentacb40ca0033a48cedfeb118dcc216f60e4dd8c45 (diff)
parent123aed7c4be0b88a4726cae5d722d74ebdf93782 (diff)
downloadlibmts-io-c0e937f5a2a31b09f2736f1aeda782ba4ad121e2.tar.gz
libmts-io-c0e937f5a2a31b09f2736f1aeda782ba4ad121e2.tar.bz2
libmts-io-c0e937f5a2a31b09f2736f1aeda782ba4ad121e2.zip
Merge branch 'quectel-radio' into quectel-specific
Ported the recent changes made by Maksym
Diffstat (limited to 'include/mts/MTS_IO_CellularRadio.h')
-rw-r--r--include/mts/MTS_IO_CellularRadio.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/mts/MTS_IO_CellularRadio.h b/include/mts/MTS_IO_CellularRadio.h
index 8e9201f..899ceeb 100644
--- a/include/mts/MTS_IO_CellularRadio.h
+++ b/include/mts/MTS_IO_CellularRadio.h
@@ -98,19 +98,19 @@ namespace MTS {
CODE getEcho(bool& bEnabled) override;
CODE setEcho(bool bEnabled = true) override;
CODE getStaticInformation(Json::Value& jData) override;
- CODE sendBasicCommand(const std::string& sCmd, int32_t timeoutMillis = 100, const char& ESC = CR) override;
+ CODE sendBasicCommand(const std::string& sCmd, int32_t timeoutMillis = 100, const char& ESC = ICellularRadio::CR) override;
std::string sendCommand(const std::string& sCmd,
const std::vector<std::string>& vBail = DEFAULT_BAIL_STRINGS,
int32_t timeoutMillis = 100,
- const char& ESC = CR) override;
+ const char& ESC = ICellularRadio::CR) override;
std::string sendCommand(const std::string& sCmd,
IsNeedMoreData& isNeedMoreData,
int32_t timeoutMillis = 100,
- const char& ESC = CR) override;
+ const char& ESC = ICellularRadio::CR) override;
protected:
@@ -133,9 +133,9 @@ namespace MTS {
public:
RadioBandMap()
{
- m_sChannel = CellularRadio::VALUE_UNKNOWN;
+ m_sChannel = ICellularRadio::VALUE_UNKNOWN;
m_iChannel = 0;
- m_sRadioType = CellularRadio::VALUE_UNKNOWN;
+ m_sRadioType = ICellularRadio::VALUE_UNKNOWN;
}
RadioBandMap(const std::string &channel, const std::string &radioType) :