Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f125e97 authored by Sarah Chin's avatar Sarah Chin
Browse files

Add timingAdvance for NR signal strength

Test: atest
Bug: 141097448
Change-Id: I09bf752fd766570cdd8ee473c5f1acd53d856347
parent 309090c5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -42,4 +42,5 @@ parcelable NrSignalStrength {
  int csiSinr;
  int csiCqiTableIndex;
  byte[] csiCqiReport;
  int timingAdvance;
}
+7 −0
Original line number Diff line number Diff line
@@ -71,4 +71,11 @@ parcelable NrSignalStrength {
     * Range [0, 15], 0xFF means invalid/unreported.
     */
    byte[] csiCqiReport;
    /**
     * Timing advance in micro seconds for a one way trip from cell to device. Approximate distance
     * is calculated using 300m/us * timingAdvance. Range: 0 to 1282 inclusive.
     * INT_MAX: 0x7FFFFFFF denotes invalid/unreported value.
     * Reference: 3GPP 36.213 section 4.2.3
     */
    int timingAdvance;
}