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

Commit 14e02f90 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Clean up AIDL warnings in GNSS" into sc-dev am: 075c8ed0

Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/13555139

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I1540faa044da4e6299f6c8234f161104242c3518
parents f163868c 075c8ed0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,6 +33,6 @@
package android.hardware.gnss;
@VintfStability
parcelable BlocklistedSource {
  android.hardware.gnss.GnssConstellationType constellation;
  android.hardware.gnss.GnssConstellationType constellation = android.hardware.gnss.GnssConstellationType.UNKNOWN;
  int svid;
}
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ parcelable GnssMeasurement {
  long carrierCycles;
  double carrierPhase;
  double carrierPhaseUncertainty;
  android.hardware.gnss.GnssMultipathIndicator multipathIndicator;
  android.hardware.gnss.GnssMultipathIndicator multipathIndicator = android.hardware.gnss.GnssMultipathIndicator.UNKNOWN;
  double snrDb;
  double agcLevelDb;
  double fullInterSignalBiasNs;
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@
package android.hardware.gnss;
@VintfStability
parcelable GnssSignalType {
  android.hardware.gnss.GnssConstellationType constellation;
  android.hardware.gnss.GnssConstellationType constellation = android.hardware.gnss.GnssConstellationType.UNKNOWN;
  double carrierFrequencyHz;
  @utf8InCpp String codeType;
  const @utf8InCpp String CODE_TYPE_A = "A";
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ parcelable BlocklistedSource {
    /**
     * Defines the constellation of the given satellite(s).
     */
    GnssConstellationType constellation;
    GnssConstellationType constellation = GnssConstellationType.UNKNOWN;

    /**
     * Satellite (space vehicle) ID number, as defined in GnssSvInfo::svid, or 0 to blocklist all
+1 −1
Original line number Diff line number Diff line
@@ -536,7 +536,7 @@ parcelable GnssMeasurement {
     * contain multipath, and MULTIPATH_INDICATOR_NOT_PRESENT for those
     * signals that are tracked and do not contain multipath.
     */
    GnssMultipathIndicator multipathIndicator;
    GnssMultipathIndicator multipathIndicator = GnssMultipathIndicator.UNKNOWN;

    /**
     * Signal-to-noise ratio at correlator output in dB.
Loading