Use Math.floor to convert RSSNR from ten db to DB

To keep the same pictogram level with Modem, use Math.floor
to convert RSSNR for LTE.

Bug: 196280737
Test: atest SignalStrengthControllerTest
Change-Id: I40797ba39ccd8d7bd802e912f8005ee9f580977d
This commit is contained in:
Ting Yu
2021-12-03 07:23:40 +01:00
committed by Håkan Gustavsson
parent 014af4028e
commit 1963708d36

View File

@@ -600,7 +600,7 @@ public final class CellSignalStrengthLte extends CellSignalStrength implements P
/** @hide */
public static int convertRssnrUnitFromTenDbToDB(int rssnr) {
return rssnr / 10;
return (int) Math.floor((float) rssnr / 10);
}
/** @hide */