* commit '23d85a911e46ac00ecaf146ca729aa3a46d17f59': Telephony: Consider EVDO ecio zero value as valid.
This commit is contained in:
@@ -335,7 +335,7 @@ public class SignalStrength implements Parcelable {
|
||||
mCdmaEcio = (mCdmaEcio > 0) ? -mCdmaEcio : -160;
|
||||
|
||||
mEvdoDbm = (mEvdoDbm > 0) ? -mEvdoDbm : -120;
|
||||
mEvdoEcio = (mEvdoEcio > 0) ? -mEvdoEcio : -1;
|
||||
mEvdoEcio = (mEvdoEcio >= 0) ? -mEvdoEcio : -1;
|
||||
mEvdoSnr = ((mEvdoSnr > 0) && (mEvdoSnr <= 8)) ? mEvdoSnr : -1;
|
||||
|
||||
// TS 36.214 Physical Layer Section 5.1.3, TS 36.331 RRC
|
||||
|
||||
Reference in New Issue
Block a user