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

Commit 9bf8c648 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7239224 from 9b0b0b83 to sc-v2-release

Change-Id: Ic44df55f50bf5806f7f59e8d691d36876af07e7c
parents baced8ca 9b0b0b83
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "hardware_interfaces_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["hardware_interfaces_license"],
}

cc_test {
cc_test {
    name: "VtsHalAutomotiveVehicleV2_0TargetTest",
    name: "VtsHalAutomotiveVehicleV2_0TargetTest",
    defaults: [
    defaults: [
+1 −0
Original line number Original line Diff line number Diff line
@@ -45,4 +45,5 @@ enum AcquiredInfo {
  TOO_DARK = 8,
  TOO_DARK = 8,
  TOO_BRIGHT = 9,
  TOO_BRIGHT = 9,
  IMMOBILE = 10,
  IMMOBILE = 10,
  RETRYING_CAPTURE = 11,
}
}
+7 −1
Original line number Original line Diff line number Diff line
@@ -82,5 +82,11 @@ enum AcquiredInfo {
     * same finger can help against false rejections.
     * same finger can help against false rejections.
     */
     */
    IMMOBILE,
    IMMOBILE,
}


    /**
     * This message may be sent to notify the framework that an additional image capture is taking
     * place. Multiple RETRYING_CAPTURE may be sent before an ACQUIRED_GOOD message is sent.
     * However, RETRYING_CAPTURE must not be sent after ACQUIRED_GOOD is sent.
     */
    RETRYING_CAPTURE,
}
+40 −39
Original line number Original line Diff line number Diff line
@@ -17,8 +17,8 @@
package android.hardware.gnss;
package android.hardware.gnss;


import android.hardware.gnss.CorrelationVector;
import android.hardware.gnss.CorrelationVector;
import android.hardware.gnss.GnssSignalType;
import android.hardware.gnss.GnssMultipathIndicator;
import android.hardware.gnss.GnssMultipathIndicator;
import android.hardware.gnss.GnssSignalType;
import android.hardware.gnss.SatellitePvt;
import android.hardware.gnss.SatellitePvt;


/**
/**
@@ -380,7 +380,6 @@ parcelable GnssMeasurement {
     */
     */
    double pseudorangeRateUncertaintyMps;
    double pseudorangeRateUncertaintyMps;



    /**
    /**
     * Flags indicating the Accumulated Delta Range's states.
     * Flags indicating the Accumulated Delta Range's states.
     *
     *
@@ -620,8 +619,10 @@ parcelable GnssMeasurement {
    double satelliteInterSignalBiasUncertaintyNs;
    double satelliteInterSignalBiasUncertaintyNs;


    /**
    /**
     * The GNSS satellite position, velocity and time information at the signal transmission time
     * The GNSS satellite position, velocity and time information at the same signal transmission
     * receivedSvTimeInNs.
     * time receivedSvTimeInNs.
     *
     * The position and velocity must be in ECEF coordinates.
     *
     *
     * If the data is available, gnssMeasurementFlags must contain HAS_SATELLITE_PVT.
     * If the data is available, gnssMeasurementFlags must contain HAS_SATELLITE_PVT.
     */
     */
+4 −1
Original line number Original line Diff line number Diff line
@@ -18,6 +18,9 @@ package android.hardware.gnss;


/**
/**
 * Contains estimates of the satellite position fields in ECEF coordinate frame.
 * Contains estimates of the satellite position fields in ECEF coordinate frame.
 *
 * The satellite position must be defined at the time of transmission of the
 * signal receivedSvTimeNs.
 */
 */
@VintfStability
@VintfStability
parcelable SatellitePositionEcef {
parcelable SatellitePositionEcef {
Loading