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

Commit 19726317 authored by Sarah Chin's avatar Sarah Chin Committed by Android (Google) Code Review
Browse files

Merge "Add timingAdvance for NR signal strength"

parents 606e156e 7f125e97
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;
}