diff options
| author | 2022-10-25 16:40:59 +0000 | |
|---|---|---|
| committer | 2022-10-25 17:28:16 +0000 | |
| commit | 109472aa4bbb103b808b60152bc51547a2030366 (patch) | |
| tree | c53313e9f24fc97a91f413b256a750fc1964d450 /location/java | |
| parent | 5dc888399c4e6bc976f0862b273dd8dec32082de (diff) | |
Update svid range
Bug: 237129569
Test: atest GnssStatusTest
Change-Id: I779157e8693c62616303e38e35e611a9f1b8bb97
Diffstat (limited to 'location/java')
| -rw-r--r-- | location/java/android/location/GnssStatus.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/location/java/android/location/GnssStatus.java b/location/java/android/location/GnssStatus.java index 23390fce1a5f..09f40e80f885 100644 --- a/location/java/android/location/GnssStatus.java +++ b/location/java/android/location/GnssStatus.java @@ -199,15 +199,15 @@ public final class GnssStatus implements Parcelable { * <li>93-106 as the frequency channel number (FCN) (-7 to +6) plus 100. * i.e. encode FCN of -7 as 93, 0 as 100, and +6 as 106</li> * </ul></li> - * <li>QZSS: 193-200</li> + * <li>QZSS: 183-206</li> * <li>Galileo: 1-36</li> - * <li>Beidou: 1-37</li> + * <li>Beidou: 1-63</li> * <li>IRNSS: 1-14</li> * </ul> * * @param satelliteIndex An index from zero to {@link #getSatelliteCount()} - 1 */ - @IntRange(from = 1, to = 200) + @IntRange(from = 1, to = 206) public int getSvid(@IntRange(from = 0) int satelliteIndex) { return mSvidWithFlags[satelliteIndex] >> SVID_SHIFT_WIDTH; } |