diff options
author | Brian Stack <bstack@google.com> | 2020-11-10 18:49:23 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-11-10 18:49:23 +0000 |
commit | f178b46b87e33ea8ccd4fa693fd5c18e6441436e (patch) | |
tree | 26da0251a7aa1464a227855a459dc531d27e4bf5 | |
parent | fa3f7a33667548e85acd46ecbda19b36ca2d0cd8 (diff) | |
parent | 82b760990c4cf8589e72ab6d966f0856e10a4633 (diff) |
Merge "Fix typo in AngleOfArrivalSupportType values"
-rw-r--r-- | core/java/android/uwb/UwbManager.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/java/android/uwb/UwbManager.java b/core/java/android/uwb/UwbManager.java index d58d5bfd8de3..6bf7d6ffa5d9 100644 --- a/core/java/android/uwb/UwbManager.java +++ b/core/java/android/uwb/UwbManager.java @@ -176,15 +176,14 @@ public final class UwbManager { * arrangement, a platform may only support hemi-spherical azimuth angles * ranging from -pi/2 to pi/2 */ - public static final int ANGLE_OF_ARRIVAL_SUPPORT_TYPE_3D_HEMISPHERICAL = 2; + public static final int ANGLE_OF_ARRIVAL_SUPPORT_TYPE_3D_HEMISPHERICAL = 3; /** * Indicate support for three dimensional angle of arrival measurement. * Typically requires at least three antennas. This mode supports full * azimuth angles ranging from -pi to pi. */ - public static final int ANGLE_OF_ARRIVAL_SUPPORT_TYPE_3D_SPHERICAL = 3; - + public static final int ANGLE_OF_ARRIVAL_SUPPORT_TYPE_3D_SPHERICAL = 4; /** * Gets the {@link AngleOfArrivalSupportType} supported on this platform |