diff options
author | Bijoy Anose <banose@multitech.com> | 2015-11-03 10:03:25 -0600 |
---|---|---|
committer | Bijoy Anose <banose@multitech.com> | 2015-11-03 10:03:25 -0600 |
commit | 98281d3bda9fae91c265e0b626782ebbaaab7bdf (patch) | |
tree | 389c2699fe40717589665b65ce29e1cd1bf834b8 /include/mts | |
parent | 88d22d0cb8f7a3d23472d13f17221176d3a43057 (diff) | |
download | libmts-io-98281d3bda9fae91c265e0b626782ebbaaab7bdf.tar.gz libmts-io-98281d3bda9fae91c265e0b626782ebbaaab7bdf.tar.bz2 libmts-io-98281d3bda9fae91c265e0b626782ebbaaab7bdf.zip |
[IN001490] libmts-io: Implementing setRxDiversity function for applicable radio models
Diffstat (limited to 'include/mts')
-rw-r--r-- | include/mts/MTS_IO_CE910Radio.h | 1 | ||||
-rw-r--r-- | include/mts/MTS_IO_CellularRadio.h | 7 | ||||
-rw-r--r-- | include/mts/MTS_IO_DE910Radio.h | 1 | ||||
-rw-r--r-- | include/mts/MTS_IO_GE910Radio.h | 1 | ||||
-rw-r--r-- | include/mts/MTS_IO_HE910Radio.h | 1 | ||||
-rw-r--r-- | include/mts/MTS_IO_LE910Radio.h | 1 |
6 files changed, 12 insertions, 0 deletions
diff --git a/include/mts/MTS_IO_CE910Radio.h b/include/mts/MTS_IO_CE910Radio.h index 47444d9..58642cb 100644 --- a/include/mts/MTS_IO_CE910Radio.h +++ b/include/mts/MTS_IO_CE910Radio.h @@ -41,6 +41,7 @@ namespace MTS { CE910Radio(const std::string& sPort); virtual ~CE910Radio(){}; + CODE setRxDiversity(const Json::Value& jArgs); protected: diff --git a/include/mts/MTS_IO_CellularRadio.h b/include/mts/MTS_IO_CellularRadio.h index 71190c5..a90c469 100644 --- a/include/mts/MTS_IO_CellularRadio.h +++ b/include/mts/MTS_IO_CellularRadio.h @@ -418,6 +418,13 @@ namespace MTS { */ virtual CODE activate(const Json::Value& jArgs, UpdateCb& stepCb); + /* + * jArgs = { + * "enabled" : "RX Diversity Enabled ("0" or "1"): STRING" + * } + */ + virtual CODE setRxDiversity(const Json::Value& jArgs)=0; + virtual CODE getEcho(bool& bEnabled); virtual CODE setEcho(bool bEnabled = true); diff --git a/include/mts/MTS_IO_DE910Radio.h b/include/mts/MTS_IO_DE910Radio.h index e9e8287..9f9b9ae 100644 --- a/include/mts/MTS_IO_DE910Radio.h +++ b/include/mts/MTS_IO_DE910Radio.h @@ -41,6 +41,7 @@ namespace MTS { DE910Radio(const std::string& sPort); virtual ~DE910Radio(){}; + CODE setRxDiversity(const Json::Value& jArgs); protected: diff --git a/include/mts/MTS_IO_GE910Radio.h b/include/mts/MTS_IO_GE910Radio.h index 403e623..27efbac 100644 --- a/include/mts/MTS_IO_GE910Radio.h +++ b/include/mts/MTS_IO_GE910Radio.h @@ -41,6 +41,7 @@ namespace MTS { GE910Radio(const std::string& sPort); virtual ~GE910Radio(){}; + CODE setRxDiversity(const Json::Value& jArgs); protected: diff --git a/include/mts/MTS_IO_HE910Radio.h b/include/mts/MTS_IO_HE910Radio.h index 8c1aaa1..e6fc73c 100644 --- a/include/mts/MTS_IO_HE910Radio.h +++ b/include/mts/MTS_IO_HE910Radio.h @@ -39,6 +39,7 @@ namespace MTS { public: virtual ~HE910Radio(){}; + CODE setRxDiversity(const Json::Value& jArgs); protected: HE910Radio(const std::string& sHE910Model, const std::string& sPort); diff --git a/include/mts/MTS_IO_LE910Radio.h b/include/mts/MTS_IO_LE910Radio.h index 5391304..f46094e 100644 --- a/include/mts/MTS_IO_LE910Radio.h +++ b/include/mts/MTS_IO_LE910Radio.h @@ -41,6 +41,7 @@ namespace MTS { LE910Radio(const std::string& sLE910Model, const std::string& sPort); virtual ~LE910Radio(){}; + CODE setRxDiversity(const Json::Value& jArgs); protected: |