CarrierConfigManager.KeyParametersUsedForNtnLteSignalBarInt Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This threshold is used when connected to a non-terrestrial LTE network.
[Android.Runtime.Register("KEY_PARAMETERS_USED_FOR_NTN_LTE_SIGNAL_BAR_INT", ApiSince=35)]
public const string KeyParametersUsedForNtnLteSignalBarInt;
[<Android.Runtime.Register("KEY_PARAMETERS_USED_FOR_NTN_LTE_SIGNAL_BAR_INT", ApiSince=35)>]
val mutable KeyParametersUsedForNtnLteSignalBarInt : string
Field Value
- Attributes
Remarks
This threshold is used when connected to a non-terrestrial LTE network. Bit-field integer to determine whether to use Reference Signal Received Power (RSRP), Reference Signal Received Quality (RSRQ), or/and Reference Signal Signal to Noise Ratio (RSSNR) for the number of NTN LTE signal bars and signal criteria reporting enabling.
If a measure is not set, signal criteria reporting from modem will not be triggered and not be used for calculating signal level. If multiple measures are set bit, the parameter whose value is smallest is used to indicate the signal level. <UL> <LI>RSRP = 1 << 0</LI> <LI>RSRQ = 1 << 1</LI> <LI>RSSNR = 1 << 2</LI> </UL>
The value of this key must be bitwise OR of CellSignalStrengthLte#USE_RSRP, CellSignalStrengthLte#USE_RSRQ, CellSignalStrengthLte#USE_RSSNR.
For example, if both RSRP and RSRQ are used, the value of key is 3 (1 << 0 | 1 << 1). If the key is invalid or not configured, a default value (RSRP = 1 << 0) will apply.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.