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

Commit 0c1fae45 authored by Shinru Han's avatar Shinru Han
Browse files

Updates API doc of GnssCorrectionComponent


Bug: 432355389
Test: build
Flag: EXEMPT API doc update only
Change-Id: I9c77e18d03ca9f2400e807f8d0951eea955a5be9
parent fcb57d86
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -210,7 +210,10 @@ public final class GnssCorrectionComponent implements Parcelable {
        /** Correction to be added to the measured pseudorange, in meters. */
        private final double mCorrectionMeters;

        /** Uncertainty of the correction, in meters. */
        /**
         * Uncertainty of the correction, in meters.
         * If the uncertainty is not available, this field should be set to 0.
         */
        private final double mCorrectionUncertaintyMeters;

        /**
@@ -225,7 +228,8 @@ public final class GnssCorrectionComponent implements Parcelable {
         * Creates a PseudorangeCorrection.
         *
         * @param correctionMeters Correction to be added to the measured pseudorange, in meters.
         * @param correctionUncertaintyMeters Uncertainty of the correction, in meters.
         * @param correctionUncertaintyMeters Uncertainty of the correction, in meters. If the
         *     uncertainty is not available, this field should be set to 0.
         * @param correctionRateMetersPerSecond Linear approximation of the change in correction
         *     over time. Intended usage is to adjust the correction using the formula:
         *     correctionMeters + correctionRateMetersPerSecond * delta_seconds Where