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

Commit 8cb5e3e6 authored by gomo's avatar gomo
Browse files

Bluesky flags to follow bit shift represntation

Bug: 111441283
Test: Existing tests pass
Change-Id: I62eae7272d63d07fbb0e2d841288444f5e9af3d2
parent 0cb863b9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -32,9 +32,9 @@ interface IGnssCallback extends @1.1::IGnssCallback {
        /** GNSS supports line-of-sight satellite identification measurement Corrections */
        MEASUREMENT_CORRECTIONS_LOS_SATS                        = 1 << 8,
        /** GNSS supports per satellite excess-path-length measurement Corrections */
        MEASUREMENT_CORRECTIONS_EXCESS_PATH_LENGTH              = 1 << 10,
        MEASUREMENT_CORRECTIONS_EXCESS_PATH_LENGTH              = 1 << 9,
        /** GNSS supports reflecting planes measurement Corrections */
        MEASUREMENT_CORRECTIONS_REFLECTING_PLANE                = 1 << 20
        MEASUREMENT_CORRECTIONS_REFLECTING_PLANE                = 1 << 10
    };

    /**