Merge "Modify the default values to avoid 2 DB hysteresis DB limitation" into rvc-dev am: 95ff60f2fd

Change-Id: Id3d8a341c64eb3e53e8822c24111f1580265afc9
This commit is contained in:
Shuo Qian
2020-05-11 20:37:36 +00:00
committed by Automerger Merge Worker
2 changed files with 6 additions and 6 deletions

View File

@@ -4156,10 +4156,10 @@ public class CarrierConfigManager {
}); });
sDefaults.putIntArray(KEY_LTE_RSRQ_THRESHOLDS_INT_ARRAY, sDefaults.putIntArray(KEY_LTE_RSRQ_THRESHOLDS_INT_ARRAY,
new int[] { new int[] {
-19, /* SIGNAL_STRENGTH_POOR */ -20, /* SIGNAL_STRENGTH_POOR */
-17, /* SIGNAL_STRENGTH_MODERATE */ -17, /* SIGNAL_STRENGTH_MODERATE */
-14, /* SIGNAL_STRENGTH_GOOD */ -14, /* SIGNAL_STRENGTH_GOOD */
-12 /* SIGNAL_STRENGTH_GREAT */ -11 /* SIGNAL_STRENGTH_GREAT */
}); });
sDefaults.putIntArray(KEY_LTE_RSSNR_THRESHOLDS_INT_ARRAY, sDefaults.putIntArray(KEY_LTE_RSSNR_THRESHOLDS_INT_ARRAY,
new int[] { new int[] {
@@ -4187,9 +4187,9 @@ public class CarrierConfigManager {
// Boundaries: [-20 dB, -3 dB] // Boundaries: [-20 dB, -3 dB]
new int[] { new int[] {
-16, /* SIGNAL_STRENGTH_POOR */ -16, /* SIGNAL_STRENGTH_POOR */
-11, /* SIGNAL_STRENGTH_MODERATE */ -12, /* SIGNAL_STRENGTH_MODERATE */
-9, /* SIGNAL_STRENGTH_GOOD */ -9, /* SIGNAL_STRENGTH_GOOD */
-7 /* SIGNAL_STRENGTH_GREAT */ -6 /* SIGNAL_STRENGTH_GREAT */
}); });
sDefaults.putIntArray(KEY_5G_NR_SSSINR_THRESHOLDS_INT_ARRAY, sDefaults.putIntArray(KEY_5G_NR_SSSINR_THRESHOLDS_INT_ARRAY,
// Boundaries: [-23 dB, 40 dB] // Boundaries: [-23 dB, 40 dB]

View File

@@ -57,9 +57,9 @@ public final class CellSignalStrengthNr extends CellSignalStrength implements Pa
// Boundaries: [-20 dB, -3 dB] // Boundaries: [-20 dB, -3 dB]
private int[] mSsRsrqThresholds = new int[] { private int[] mSsRsrqThresholds = new int[] {
-16, /* SIGNAL_STRENGTH_POOR */ -16, /* SIGNAL_STRENGTH_POOR */
-11, /* SIGNAL_STRENGTH_MODERATE */ -12, /* SIGNAL_STRENGTH_MODERATE */
-9, /* SIGNAL_STRENGTH_GOOD */ -9, /* SIGNAL_STRENGTH_GOOD */
-7 /* SIGNAL_STRENGTH_GREAT */ -6 /* SIGNAL_STRENGTH_GREAT */
}; };
// Lifted from Default carrier configs and max range of SSSINR // Lifted from Default carrier configs and max range of SSSINR