summaryrefslogtreecommitdiffstats
path: root/location
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2009-05-06 10:48:30 -0400
committerMike Lockwood <lockwood@android.com>2009-05-06 10:48:30 -0400
commitb7c4ae91d95cfdb9a87eca1f543ddb2fa38a7c45 (patch)
tree19bb01ba586d6b1cc74117190b4eeb69bfee2dd1 /location
parent636274185ed5ee75faf6ef4d84bbb7d5b0371248 (diff)
downloadframeworks_base-b7c4ae91d95cfdb9a87eca1f543ddb2fa38a7c45.zip
frameworks_base-b7c4ae91d95cfdb9a87eca1f543ddb2fa38a7c45.tar.gz
frameworks_base-b7c4ae91d95cfdb9a87eca1f543ddb2fa38a7c45.tar.bz2
GpsStatus: Increase NUM_SATELLITES to 255 for future compatibility.
64 satellties are required for NavStar, WAAS, EGNOS, and GLONASS satellites. Increasing to 255 allows for future compatibility with Galileo. Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'location')
-rw-r--r--location/java/android/location/GpsStatus.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/location/java/android/location/GpsStatus.java b/location/java/android/location/GpsStatus.java
index a40b1fb..2cda7fa 100644
--- a/location/java/android/location/GpsStatus.java
+++ b/location/java/android/location/GpsStatus.java
@@ -25,7 +25,7 @@ import java.util.NoSuchElementException;
* This class is used in conjunction with the {@link Listener} interface.
*/
public final class GpsStatus {
- private static final int NUM_SATELLITES = 32;
+ private static final int NUM_SATELLITES = 255;
/* These package private values are modified by the LocationManager class */
private int mTimeToFirstFix;