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

Commit 3f884a8b authored by Ayush Jain's avatar Ayush Jain
Browse files

Add a Vendor dependent UCI Status code for UWB OFF

Add a UCI status code for scenario when UWB needs to be turned off due
to Regulatory reasons.

Ran the "m android.hardware.uwb.fira_android-update-api" command to
update the generated AIDL API.

Bug: 267554906
Test: Compile make.com.google.android.uwb
Change-Id: I5f86007776479fefe2d3b3e36d16ef628f92cebd
parent f7ad0fb1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -36,4 +36,5 @@ package android.hardware.uwb.fira_android;
enum UwbVendorStatusCodes {
  STATUS_ERROR_CCC_SE_BUSY = 80,
  STATUS_ERROR_CCC_LIFECYCLE = 81,
  STATUS_REGULATION_UWB_OFF = 82,
}
+2 −0
Original line number Diff line number Diff line
@@ -33,4 +33,6 @@ enum UwbVendorStatusCodes {
    STATUS_ERROR_CCC_SE_BUSY = 0x50,
    /** CCC Lifecycle error */
    STATUS_ERROR_CCC_LIFECYCLE = 0x51,
    /** UWB Regulation Off */
    STATUS_REGULATION_UWB_OFF = 0x52,
}