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/MTS_IO_CellularRadio.h | |
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/MTS_IO_CellularRadio.h')
-rw-r--r-- | include/mts/MTS_IO_CellularRadio.h | 7 |
1 files changed, 7 insertions, 0 deletions
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); |