Make getEcno() public.

Test: atest CellInfoTest#verifyCellSignalStrengthWcdma
Bug: 139417139
Merged-in: Ic70af2ca0d60fbf43a929982d8b6853c7b7da049
Change-Id: Ic70af2ca0d60fbf43a929982d8b6853c7b7da049
(cherry picked from commit 3a3c09610a)
This commit is contained in:
Amit Mahajan
2019-10-09 17:19:30 -07:00
parent 3d8a0ce489
commit af672b9910
2 changed files with 6 additions and 2 deletions

View File

@@ -44439,6 +44439,7 @@ package android.telephony {
method public int describeContents();
method public int getAsuLevel();
method public int getDbm();
method public int getEcNo();
method @IntRange(from=android.telephony.CellSignalStrength.SIGNAL_STRENGTH_NONE_OR_UNKNOWN, to=android.telephony.CellSignalStrength.SIGNAL_STRENGTH_GREAT) public int getLevel();
method public void writeToParcel(android.os.Parcel, int);
field @NonNull public static final android.os.Parcelable.Creator<android.telephony.CellSignalStrengthWcdma> CREATOR;

View File

@@ -245,9 +245,12 @@ public final class CellSignalStrengthWcdma extends CellSignalStrength implements
}
/**
* Get the Ec/No as dB
* Get the Ec/No (Energy per chip over the noise spectral density) as dB.
*
* @hide
* Reference: TS 25.133 Section 9.1.2.3
*
* @return the Ec/No of the measured cell in the range [-24, 1] or
* {@link android.telephony.CellInfo#UNAVAILABLE UNAVAILABLE} if unavailable
*/
public int getEcNo() {
return mEcNo;