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

Commit 5c7f972d authored by Presubmit Automerger Backend's avatar Presubmit Automerger Backend
Browse files

[automerge] Add a Vendor-dependent UCI Reason code for UWB OFF 2p: ff9268b1

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

Bug: 267554906
Change-Id: Iaac1b79eb02ecc621b7423650abb2ef1e0bb9d2a
parents 95342882 ff9268b1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -35,4 +35,5 @@ package android.hardware.uwb.fira_android;
@Backing(type="int") @VintfStability
enum UwbVendorReasonCodes {
  REASON_ERROR_INVALID_CHANNEL_WITH_AOA = 128,
  REASON_REGULATION_UWB_OFF = 129,
}
+4 −2
Original line number Diff line number Diff line
@@ -24,11 +24,13 @@ package android.hardware.uwb.fira_android;
@Backing(type="int")
enum UwbVendorReasonCodes {
    /**
     * Use values from the vendor specific reason code range: 0x80 – 0xFF defined in Table 16 of
     * UCI specification.
     * Use values from the vendor specific reason code range: 0x80 – 0xFF defined in
     * Table 15 (state change with reason codes) of UCI specification.
     */

    /** Fira specific */
    /** The channel requested is not available for AoA */
    REASON_ERROR_INVALID_CHANNEL_WITH_AOA = 0x80,
    /** UWB has been disabled (eg: country code change leads to UWB unsupported) */
    REASON_REGULATION_UWB_OFF = 0x81,
}