diff options
| author | Mykola Salomatin <mykola.salomatin@globallogic.com> | 2021-09-29 16:20:21 +0300 | 
|---|---|---|
| committer | John Klug <john.klug@multitech.com> | 2022-04-18 13:46:51 -0500 | 
| commit | 166af1c1bd7c9a0368d046261bab2162a37a7dc2 (patch) | |
| tree | d9e62a1a039fc9a25d67ec4ef6ad2a260ad97ce0 /src/MTS_IO_ICellularRadio.cpp | |
| parent | 8eb97c149a08f6ec9d938be53868ee426895bf0e (diff) | |
| download | libmts-io-166af1c1bd7c9a0368d046261bab2162a37a7dc2.tar.gz libmts-io-166af1c1bd7c9a0368d046261bab2162a37a7dc2.tar.bz2 libmts-io-166af1c1bd7c9a0368d046261bab2162a37a7dc2.zip | |
[MTX-4206] mPower R.6.0: Making Telit and Quectel radios data-only on AT&T network. GP-1364
Add 2 functions for Telit and Quectel modems:
  - disableVoiceSupport: disable voice support (IMS and CSFB) and enable SMS only registration flag.
  - getVoiceSupport: get voice support configuration for the current radio.
Diffstat (limited to 'src/MTS_IO_ICellularRadio.cpp')
| -rw-r--r-- | src/MTS_IO_ICellularRadio.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/MTS_IO_ICellularRadio.cpp b/src/MTS_IO_ICellularRadio.cpp index 0a33b59..cfb6811 100644 --- a/src/MTS_IO_ICellularRadio.cpp +++ b/src/MTS_IO_ICellularRadio.cpp @@ -54,6 +54,8 @@ const char *MTS::IO::ICellularRadio::KEY_SUPPORTED_CELL_MODES = "supportedCellul  const char *MTS::IO::ICellularRadio::KEY_SIM_CARRIER_CODE = "simCarrierCode";  //!< Unique carrier identifier based on the SIM card information.  const char *MTS::IO::ICellularRadio::KEY_SIM_MCC = "simMcc";     //!< MCC of the home network from the SIM.  const char *MTS::IO::ICellularRadio::KEY_SIM_MNC = "simMnc";     //!< MNC of the home network from the SIM. +const char *MTS::IO::ICellularRadio::KEY_VOICE_ENABLED = "voiceEnabled"; //!< Enable/Disable support of voice calls +const char *MTS::IO::ICellularRadio::KEY_SMS_ONLY = "smsOnly";   //!< Enable/Disable "SMS only" registration flag  //Dynamic Data  const char *MTS::IO::ICellularRadio::KEY_ROAMING = "roaming";    //!< Indicates whether or not using Home Network  const char *MTS::IO::ICellularRadio::KEY_DATETIME = "datetime";  //!< Date and Time from tower | 
