diff options
author | Yevhen Mykhno <yevhen.mykhno@globallogic.com> | 2023-01-31 13:26:34 +0200 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2023-03-13 10:49:38 -0500 |
commit | a6f0f7e7b341d6ce29ad71ee534031e9d8e9630b (patch) | |
tree | 1679304e1b5858dfc092edaaaec9de7a0f3ed69b /src/MTS_IO_CE910Radio.cpp | |
parent | e661044a43345f7cac947c3bb6178a2c045028f6 (diff) | |
download | libmts-io-a6f0f7e7b341d6ce29ad71ee534031e9d8e9630b.tar.gz libmts-io-a6f0f7e7b341d6ce29ad71ee534031e9d8e9630b.tar.bz2 libmts-io-a6f0f7e7b341d6ce29ad71ee534031e9d8e9630b.zip |
[GP-1733] mPower R.6.3.X: L6G1 Support - libmts-io, radio-cmd, radio-query
- function getRegistrationCommands() implemented as
pure virtual and overrided for every base radio model
- minor indentation fixes
- function getSimStatusSummary(Json::Value& jData) changed to process
radio modems that do not have separate commands for the SIM presence check
- function getManufacturer(std::string& sManufacturer) changed: AT command changet to 'AT+CGMI'
- src/MTS_IO_QuectelRadio.cpp -- comments correction
Diffstat (limited to 'src/MTS_IO_CE910Radio.cpp')
-rw-r--r-- | src/MTS_IO_CE910Radio.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/MTS_IO_CE910Radio.cpp b/src/MTS_IO_CE910Radio.cpp index d1cad9b..f0ec560 100644 --- a/src/MTS_IO_CE910Radio.cpp +++ b/src/MTS_IO_CE910Radio.cpp @@ -41,5 +41,9 @@ CE910Radio::CE910Radio(const std::string& sPort) ICellularRadio::CODE CE910Radio::setRxDiversity(const Json::Value& jArgs) { /* Command string for CE radios: N/A */ - return FAILURE; + return NOT_APPLICABLE; +} + +const std::vector<std::string> CE910Radio::getRegistrationCommands() { + return { "CREG" }; } |