diff options
| author | Mykola Salomatin <mykola.salomatin@globallogic.com> | 2022-05-04 12:40:15 +0300 | 
|---|---|---|
| committer | Mykola Salomatin <mykola.salomatin@globallogic.com> | 2022-05-04 12:40:15 +0300 | 
| commit | 47997c0e5aa7d32ddbba22ceead2ff553881c47c (patch) | |
| tree | 7ab78bc6273ffa42305c342f1fe71d1ffa1d6779 /include/mts/MTS_IO_QuectelRadio.h | |
| parent | 733ded9a96c8e9aa13c38dd223b8b585c2801bfd (diff) | |
| download | libmts-io-47997c0e5aa7d32ddbba22ceead2ff553881c47c.tar.gz libmts-io-47997c0e5aa7d32ddbba22ceead2ff553881c47c.tar.bz2 libmts-io-47997c0e5aa7d32ddbba22ceead2ff553881c47c.zip | |
[MTX-4445] mPower R.6.0.X: MTCAP3: LNA7D - cellular radio support GP-1548
setRxDiversity command moved to common class for Quectel radios - QuectelRadio.cpp.
Add LNA7D radio support.
LNA7D radio supports only 3g and 4g network modes.
Add new command for enabling/disabling diversity. Retained backward compatibility with the old diversity command.
Diffstat (limited to 'include/mts/MTS_IO_QuectelRadio.h')
| -rw-r--r-- | include/mts/MTS_IO_QuectelRadio.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/include/mts/MTS_IO_QuectelRadio.h b/include/mts/MTS_IO_QuectelRadio.h index c54e560..bd312b8 100644 --- a/include/mts/MTS_IO_QuectelRadio.h +++ b/include/mts/MTS_IO_QuectelRadio.h @@ -83,6 +83,8 @@ namespace MTS {                  static bool isContainsSignChar(const std::string& str); +                CODE setRxDiversity(const Json::Value& jArgs) override; +              private:                  // private variable to save old firmware versions during FOTA                  std::string m_sQuectelFirmware; @@ -117,6 +119,8 @@ namespace MTS {                          return vector[index];                      }                  } + +                CODE isDivctlSupported(bool& bSupported);          };      }  } | 
